Title: [173167] trunk/Source/WebKit2
Revision
173167
Author
[email protected]
Date
2014-09-01 21:43:50 -0700 (Mon, 01 Sep 2014)

Log Message

Fix the iOS build.

* UIProcess/ios/WKContentView.mm:
(-[WKContentView _createDrawingAreaProxy]):
Whoops.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (173166 => 173167)


--- trunk/Source/WebKit2/ChangeLog	2014-09-02 02:05:04 UTC (rev 173166)
+++ trunk/Source/WebKit2/ChangeLog	2014-09-02 04:43:50 UTC (rev 173167)
@@ -1,3 +1,11 @@
+2014-09-01  Timothy Horton  <[email protected]>
+
+        Fix the iOS build.
+
+        * UIProcess/ios/WKContentView.mm:
+        (-[WKContentView _createDrawingAreaProxy]):
+        Whoops.
+
 2014-09-01  Ryuan Choi  <[email protected]>
 
         Build break on the EFL port since r173163

Modified: trunk/Source/WebKit2/UIProcess/ios/WKContentView.mm (173166 => 173167)


--- trunk/Source/WebKit2/UIProcess/ios/WKContentView.mm	2014-09-02 02:05:04 UTC (rev 173166)
+++ trunk/Source/WebKit2/UIProcess/ios/WKContentView.mm	2014-09-02 04:43:50 UTC (rev 173167)
@@ -420,7 +420,7 @@
 
 - (std::unique_ptr<DrawingAreaProxy>)_createDrawingAreaProxy
 {
-    return std::make_unique<RemoteLayerTreeDrawingAreaProxy>(_page.get());
+    return std::make_unique<RemoteLayerTreeDrawingAreaProxy>(*_page);
 }
 
 - (void)_processDidExit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to