[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

timothy at apple.com timothy at apple.com
Wed Dec 22 16:01:35 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5034134794770291e1868591aeb98c55df523ea3
Author: timothy at apple.com <timothy at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 17 22:46:48 2010 +0000

    Remove duplicate Web Inspector message handeling in WebPage::didReceiveMessage.
    
    https://webkit.org/b/49689
    
    Reviewed by Andreas Kling.
    
    * WebProcess/WebPage/WebPage.cpp:
    (WebKit::WebPage::didReceiveMessage): Remove duplicate code.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72247 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index d9c7c10..8268430 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,5 +1,16 @@
 2010-11-17  Timothy Hatcher  <timothy at apple.com>
 
+        Remove duplicate Web Inspector message handeling in WebPage::didReceiveMessage.
+
+        https://webkit.org/b/49689
+
+        Reviewed by Andreas Kling.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::didReceiveMessage): Remove duplicate code.
+
+2010-11-17  Timothy Hatcher  <timothy at apple.com>
+
         Fix a crash when closing the inspected page when the Web Inspector
         page was never created.
 
diff --git a/WebKit2/WebProcess/WebPage/WebPage.cpp b/WebKit2/WebProcess/WebPage/WebPage.cpp
index 7a1bafd..05fd924 100644
--- a/WebKit2/WebProcess/WebPage/WebPage.cpp
+++ b/WebKit2/WebProcess/WebPage/WebPage.cpp
@@ -1062,12 +1062,6 @@ void WebPage::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::Messag
         return;
     }
 
-    if (messageID.is<CoreIPC::MessageClassWebInspector>()) {
-        if (WebInspector* inspector = this->inspector())
-            inspector->didReceiveWebInspectorMessage(connection, messageID, arguments);
-        return;
-    }
-
     didReceiveWebPageMessage(connection, messageID, arguments);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list