Title: [180912] trunk/Source/WebKit2
Revision
180912
Author
beid...@apple.com
Date
2015-03-02 17:37:12 -0800 (Mon, 02 Mar 2015)

Log Message

Lots of: ERROR: Unhandled web process message WebPageGroupProxy:RemoveAllUserContentFilters
https://bugs.webkit.org/show_bug.cgi?id=142155

Reviewed by Simon Fraser.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didReceiveMessage): Return after handling WebPageGroupProxy messages
  instead of logging an error.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (180911 => 180912)


--- trunk/Source/WebKit2/ChangeLog	2015-03-03 01:04:40 UTC (rev 180911)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-03 01:37:12 UTC (rev 180912)
@@ -1,3 +1,14 @@
+2015-03-02  Brady Eidson  <beid...@apple.com>
+
+        Lots of: ERROR: Unhandled web process message WebPageGroupProxy:RemoveAllUserContentFilters
+        https://bugs.webkit.org/show_bug.cgi?id=142155
+
+        Reviewed by Simon Fraser.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::didReceiveMessage): Return after handling WebPageGroupProxy messages
+          instead of logging an error.
+
 2015-03-02  Antti Koivisto  <an...@apple.com>
 
         Add way to dump cache meta data to file

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (180911 => 180912)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2015-03-03 01:04:40 UTC (rev 180911)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2015-03-03 01:37:12 UTC (rev 180912)
@@ -628,6 +628,7 @@
             return;
         
         pageGroupProxy->didReceiveMessage(connection, decoder);
+        return;
     }
 
     LOG_ERROR("Unhandled web process message '%s:%s'", decoder.messageReceiverName().toString().data(), decoder.messageName().toString().data());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to