Title: [154755] trunk/Source/WebKit2
Revision
154755
Author
[email protected]
Date
2013-08-28 10:04:02 -0700 (Wed, 28 Aug 2013)

Log Message

[wk2] Resolve unused parameter warnings in the WebProcess.cpp
https://bugs.webkit.org/show_bug.cgi?id=120412

Patch by Tamas Czene <[email protected]> on 2013-08-28
Reviewed by Darin Adler.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::startMemorySampler):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (154754 => 154755)


--- trunk/Source/WebKit2/ChangeLog	2013-08-28 17:03:19 UTC (rev 154754)
+++ trunk/Source/WebKit2/ChangeLog	2013-08-28 17:04:02 UTC (rev 154755)
@@ -1,3 +1,13 @@
+2013-08-28  Tamas Czene  <[email protected]>
+
+        [wk2] Resolve unused parameter warnings in the WebProcess.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=120412
+
+        Reviewed by Darin Adler.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::startMemorySampler):
+
 2013-08-28  Darin Adler  <[email protected]>
 
         Eliminate Pasteboard::generalPasteboard

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (154754 => 154755)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2013-08-28 17:03:19 UTC (rev 154754)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2013-08-28 17:04:02 UTC (rev 154755)
@@ -1112,6 +1112,10 @@
 {
 #if ENABLE(MEMORY_SAMPLER)    
     WebMemorySampler::shared()->start(sampleLogFileHandle, sampleLogFilePath, interval);
+#else
+    UNUSED_PARAM(sampleLogFileHandle);
+    UNUSED_PARAM(sampleLogFilePath);
+    UNUSED_PARAM(interval);
 #endif
 }
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to