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

weinig at apple.com weinig at apple.com
Wed Dec 22 13:23:13 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 50bd2df2aac27aff4bd6f1754e09acee6aee6a19
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 13 21:23:41 2010 +0000

    didFinishDocumentLoadForFrame() is not being sent by WebKit2
    <rdar://problem/8424171>
    
    Reviewed by Anders Carlsson.
    
    Finish wiring up didFinishDocumentLoad to the UIProcess.
    
    * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
    (WebKit::WebFrameLoaderClient::dispatchDidFinishDocumentLoad):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67411 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 1fa8227..6a2ffcd 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-13  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Anders Carlsson.
+
+        didFinishDocumentLoadForFrame() is not being sent by WebKit2
+        <rdar://problem/8424171>
+
+        Finish wiring up didFinishDocumentLoad to the UIProcess.
+
+        * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
+        (WebKit::WebFrameLoaderClient::dispatchDidFinishDocumentLoad):
+
 2010-09-13  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp b/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
index 93c65b0..aab390b 100644
--- a/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
+++ b/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
@@ -355,6 +355,9 @@ void WebFrameLoaderClient::dispatchDidFinishDocumentLoad()
 
     // Notify the bundle client.
     webPage->injectedBundleLoaderClient().didFinishDocumentLoadForFrame(webPage, m_frame);
+
+    // Notify the UIProcess.
+    WebProcess::shared().connection()->send(WebPageProxyMessage::DidFinishDocumentLoadForFrame, webPage->pageID(), CoreIPC::In(m_frame->frameID()));
 }
 
 void WebFrameLoaderClient::dispatchDidFinishLoad()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list