Title: [159906] trunk/Source/WebKit2
Revision
159906
Author
[email protected]
Date
2013-12-01 17:53:39 -0800 (Sun, 01 Dec 2013)

Log Message

[Cocoa] The PageLoadState::Observer is not being set on iOS
https://bugs.webkit.org/show_bug.cgi?id=125051

Reviewed by Dan Bernstein.

* UIProcess/ios/WebPageProxyIOS.mm:
(WebKit::WebPageProxy::platformInitialize):
Add missing call to _finishInitialization.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (159905 => 159906)


--- trunk/Source/WebKit2/ChangeLog	2013-12-02 01:16:34 UTC (rev 159905)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-02 01:53:39 UTC (rev 159906)
@@ -1,3 +1,14 @@
+2013-12-01  Sam Weinig  <[email protected]>
+
+        [Cocoa] The PageLoadState::Observer is not being set on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=125051
+
+        Reviewed by Dan Bernstein.
+
+        * UIProcess/ios/WebPageProxyIOS.mm:
+        (WebKit::WebPageProxy::platformInitialize):
+        Add missing call to _finishInitialization.
+
 2013-12-01  Ryuan Choi  <[email protected]>
 
         Unreviewed EFL Build fix attempt after r159903

Modified: trunk/Source/WebKit2/UIProcess/ios/WebPageProxyIOS.mm (159905 => 159906)


--- trunk/Source/WebKit2/UIProcess/ios/WebPageProxyIOS.mm	2013-12-02 01:16:34 UTC (rev 159905)
+++ trunk/Source/WebKit2/UIProcess/ios/WebPageProxyIOS.mm	2013-12-02 01:53:39 UTC (rev 159906)
@@ -27,11 +27,12 @@
 #import "WebPageProxy.h"
 
 #import "NativeWebKeyboardEvent.h"
+#import "PageClient.h"
+#import "WKBrowsingContextControllerInternal.h"
 #import "WebPageMessages.h"
 #import "WebProcessProxy.h"
 #import <WebCore/NotImplemented.h>
 #import <WebCore/SharedBuffer.h>
-#import "PageClientImplIOS.h"
 
 using namespace WebCore;
 
@@ -39,7 +40,9 @@
 
 void WebPageProxy::platformInitialize()
 {
-    notImplemented();
+#if WK_API_ENABLED
+    [WebKit::wrapper(*this) _finishInitialization];
+#endif
 }
 
 String WebPageProxy::standardUserAgent(const String&)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to