Title: [163683] trunk/Source/WebKit2
Revision
163683
Author
timothy_hor...@apple.com
Date
2014-02-07 18:42:43 -0800 (Fri, 07 Feb 2014)

Log Message

Build fix.

* UIProcess/API/ios/WKContentView.mm:
(-[WKContentView initWithFrame:configuration:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163682 => 163683)


--- trunk/Source/WebKit2/ChangeLog	2014-02-08 02:39:12 UTC (rev 163682)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-08 02:42:43 UTC (rev 163683)
@@ -1,3 +1,10 @@
+2014-02-07  Tim Horton  <timothy_hor...@apple.com>
+
+       Build fix.
+
+        * UIProcess/API/ios/WKContentView.mm:
+        (-[WKContentView initWithFrame:configuration:]):
+
 2014-02-07  Anders Carlsson  <ander...@apple.com>
 
         Pass the preferences through from the WKWebViewConfiguration object

Modified: trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm (163682 => 163683)


--- trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm	2014-02-08 02:39:12 UTC (rev 163682)
+++ trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm	2014-02-08 02:42:43 UTC (rev 163683)
@@ -105,7 +105,7 @@
     _pageClient = std::make_unique<PageClientImpl>(self);
 
     WebPageConfiguration webPageConfiguration;
-    webPageConfiguration.preferences = [_configuration preferences]->_preferences.get();
+    webPageConfiguration.preferences = configuration.preferences->_preferences.get();
 
     _page = configuration.processClass->_context->createWebPage(*_pageClient, std::move(webPageConfiguration));
     _page->initializeWebPage();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to