Title: [173951] trunk/Source/WebKit2
Revision
173951
Author
[email protected]
Date
2014-09-25 03:51:27 -0700 (Thu, 25 Sep 2014)

Log Message

[WebKit2] Fix build warning in WebKit2/WebProcess module.
https://bugs.webkit.org/show_bug.cgi?id=137105

Patch by Shivakumar JM <[email protected]> on 2014-09-25
Reviewed by Csaba Osztrogonác.

Fix build warning by removing unused parameter names

* WebProcess/WebPage/WebInspector.h:
(WebKit::WebInspector::didReceiveInvalidMessage):
* WebProcess/WebPage/WebInspectorUI.h:
(WebKit::WebInspectorUI::didReceiveInvalidMessage):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (173950 => 173951)


--- trunk/Source/WebKit2/ChangeLog	2014-09-25 10:36:02 UTC (rev 173950)
+++ trunk/Source/WebKit2/ChangeLog	2014-09-25 10:51:27 UTC (rev 173951)
@@ -1,3 +1,17 @@
+2014-09-25  Shivakumar JM  <[email protected]>
+
+        [WebKit2] Fix build warning in WebKit2/WebProcess module.
+        https://bugs.webkit.org/show_bug.cgi?id=137105
+
+        Reviewed by Csaba Osztrogonác.
+
+        Fix build warning by removing unused parameter names
+
+        * WebProcess/WebPage/WebInspector.h:
+        (WebKit::WebInspector::didReceiveInvalidMessage):
+        * WebProcess/WebPage/WebInspectorUI.h:
+        (WebKit::WebInspectorUI::didReceiveInvalidMessage):
+
 2014-09-24  Sam Weinig  <[email protected]>
 
         Remove incorrect use of the BKSProcessAssertionAllowSuspendOnSleep flag for process suspension in iOS WebKit2

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.h (173950 => 173951)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.h	2014-09-25 10:36:02 UTC (rev 173950)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebInspector.h	2014-09-25 10:51:27 UTC (rev 173951)
@@ -54,7 +54,7 @@
 
     // IPC::Connection::Client
     void didClose(IPC::Connection*) { close(); }
-    void didReceiveInvalidMessage(IPC::Connection*, IPC::StringReference messageReceiverName, IPC::StringReference messageName) { close(); }
+    void didReceiveInvalidMessage(IPC::Connection*, IPC::StringReference, IPC::StringReference) { close(); }
 
     // Called by WebInspector messages
     void connectionEstablished();

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h (173950 => 173951)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h	2014-09-25 10:36:02 UTC (rev 173950)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebInspectorUI.h	2014-09-25 10:51:27 UTC (rev 173951)
@@ -49,7 +49,7 @@
 
     // IPC::Connection::Client
     void didClose(IPC::Connection*) { closeWindow(); }
-    void didReceiveInvalidMessage(IPC::Connection*, IPC::StringReference messageReceiverName, IPC::StringReference messageName) { closeWindow(); }
+    void didReceiveInvalidMessage(IPC::Connection*, IPC::StringReference, IPC::StringReference) { closeWindow(); }
 
     // Called by WebInspectorUI messages
     void establishConnection(IPC::Attachment connectionIdentifier, uint64_t inspectedPageIdentifier, bool underTest);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to