Title: [171349] trunk/Source/WebKit2
Revision
171349
Author
commit-qu...@webkit.org
Date
2014-07-22 11:13:46 -0700 (Tue, 22 Jul 2014)

Log Message

Web Inspector: Fix unused parameter build warning
https://bugs.webkit.org/show_bug.cgi?id=135151

Patch by Shivakumar JM <shiva...@samsung.com> on 2014-07-22
Reviewed by Joseph Pecoraro.

Fix unused parameter build warning by removing the parameter name

* WebProcess/WebPage/WebInspector.cpp:
(WebKit::WebInspector::setJavaScriptProfilingEnabled):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (171348 => 171349)


--- trunk/Source/WebKit2/ChangeLog	2014-07-22 18:01:03 UTC (rev 171348)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-22 18:13:46 UTC (rev 171349)
@@ -1,5 +1,17 @@
 2014-07-22  Shivakumar JM  <shiva...@samsung.com>
 
+        Web Inspector: Fix unused parameter build warning
+        https://bugs.webkit.org/show_bug.cgi?id=135151
+
+        Reviewed by Joseph Pecoraro.
+
+        Fix unused parameter build warning by removing the parameter name 
+
+        * WebProcess/WebPage/WebInspector.cpp:
+        (WebKit::WebInspector::setJavaScriptProfilingEnabled):
+
+2014-07-22  Shivakumar JM  <shiva...@samsung.com>
+
         Fix unused parameter build warning in UIProcess module
         https://bugs.webkit.org/show_bug.cgi?id=135154
 

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.cpp (171348 => 171349)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.cpp	2014-07-22 18:01:03 UTC (rev 171348)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.cpp	2014-07-22 18:13:46 UTC (rev 171349)
@@ -275,7 +275,7 @@
         m_frontendClient->setDebuggingEnabled(false);
 }
 
-void WebInspector::setJavaScriptProfilingEnabled(bool enabled)
+void WebInspector::setJavaScriptProfilingEnabled(bool)
 {
     // No longer supported.
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to