Title: [177719] trunk/Source/WebKit2
Revision
177719
Author
[email protected]
Date
2014-12-23 20:50:15 -0800 (Tue, 23 Dec 2014)

Log Message

iOS build fix

* UIProcess/API/Cocoa/WKProcessGroup.mm:
(-[WKProcessGroup _geolocationProvider]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (177718 => 177719)


--- trunk/Source/WebKit2/ChangeLog	2014-12-24 04:43:05 UTC (rev 177718)
+++ trunk/Source/WebKit2/ChangeLog	2014-12-24 04:50:15 UTC (rev 177719)
@@ -1,3 +1,10 @@
+2014-12-23  Dan Bernstein  <[email protected]>
+
+        iOS build fix
+
+        * UIProcess/API/Cocoa/WKProcessGroup.mm:
+        (-[WKProcessGroup _geolocationProvider]):
+
 2014-12-23  Gyuyoung Kim  <[email protected]>
 
         [EFL][WK2] Fix a lot of build break since r177692 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessGroup.mm (177718 => 177719)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessGroup.mm	2014-12-24 04:43:05 UTC (rev 177718)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessGroup.mm	2014-12-24 04:50:15 UTC (rev 177719)
@@ -235,7 +235,7 @@
 - (WKGeolocationProviderIOS *)_geolocationProvider
 {
     if (!_geolocationProvider)
-        _geolocationProvider = adoptNS([[WKGeolocationProviderIOS alloc] initWithProcessPool:_processPool.get()]);
+        _geolocationProvider = adoptNS([[WKGeolocationProviderIOS alloc] initWithProcessPool:*_processPool.get()]);
     return _geolocationProvider.get();
 }
 #endif // PLATFORM(IOS)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to