Title: [163680] trunk/Source/WebKit2
Revision
163680
Author
[email protected]
Date
2014-02-07 18:28:08 -0800 (Fri, 07 Feb 2014)

Log Message

Fix the WebKit2 build after r163671.

* UIProcess/API/ios/WKContentView.mm:
(-[WKContentView _commonInitializationWithContextRef:pageGroupRef:relatedToPage:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163679 => 163680)


--- trunk/Source/WebKit2/ChangeLog	2014-02-08 02:25:03 UTC (rev 163679)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-08 02:28:08 UTC (rev 163680)
@@ -1,3 +1,10 @@
+2014-02-07  Tim Horton  <[email protected]>
+
+        Fix the WebKit2 build after r163671.
+
+        * UIProcess/API/ios/WKContentView.mm:
+        (-[WKContentView _commonInitializationWithContextRef:pageGroupRef:relatedToPage:]):
+
 2014-02-07  Gavin Barraclough  <[email protected]>
 
         Remove isInitialState flag from Page::setViewState

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


--- trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm	2014-02-08 02:25:03 UTC (rev 163679)
+++ trunk/Source/WebKit2/UIProcess/API/ios/WKContentView.mm	2014-02-08 02:28:08 UTC (rev 163680)
@@ -254,7 +254,7 @@
     _pageClient = std::make_unique<PageClientImpl>(self);
 
     WebPageConfiguration webPageConfiguration;
-    webPageConfiguration.group = toImpl(pageGroupRef);
+    webPageConfiguration.pageGroup = toImpl(pageGroupRef);
     webPageConfiguration.relatedPage = toImpl(relatedPage);
 
     _page = toImpl(contextRef)->createWebPage(*_pageClient, std::move(webPageConfiguration));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to