Title: [186067] trunk/Source/WebKit2
Revision
186067
Author
[email protected]
Date
2015-06-28 23:51:28 -0700 (Sun, 28 Jun 2015)

Log Message

Fixed the iOS 8.x build after r186066.

* UIProcess/ios/WebVideoFullscreenManagerProxy.h:
* UIProcess/ios/WebVideoFullscreenManagerProxy.mm:
(WebKit::WebVideoFullscreenManagerProxy::create):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (186066 => 186067)


--- trunk/Source/WebKit2/ChangeLog	2015-06-29 06:43:45 UTC (rev 186066)
+++ trunk/Source/WebKit2/ChangeLog	2015-06-29 06:51:28 UTC (rev 186067)
@@ -1,5 +1,13 @@
 2015-06-28  Dan Bernstein  <[email protected]>
 
+        Fixed the iOS 8.x build after r186066.
+
+        * UIProcess/ios/WebVideoFullscreenManagerProxy.h:
+        * UIProcess/ios/WebVideoFullscreenManagerProxy.mm:
+        (WebKit::WebVideoFullscreenManagerProxy::create):
+
+2015-06-28  Dan Bernstein  <[email protected]>
+
         Fixed the iOS build after r186059.
 
         * UIProcess/ios/WebVideoFullscreenManagerProxy.h:

Modified: trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.h (186066 => 186067)


--- trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.h	2015-06-29 06:43:45 UTC (rev 186066)
+++ trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.h	2015-06-29 06:51:28 UTC (rev 186067)
@@ -101,7 +101,7 @@
 
 class WebVideoFullscreenManagerProxy : public RefCounted<WebVideoFullscreenManagerProxy>, private IPC::MessageReceiver {
 public:
-    static Ref<WebVideoFullscreenManagerProxy> create(WebPageProxy&);
+    static RefPtr<WebVideoFullscreenManagerProxy> create(WebPageProxy&);
     virtual ~WebVideoFullscreenManagerProxy();
 
     void invalidate();

Modified: trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.mm (186066 => 186067)


--- trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.mm	2015-06-29 06:43:45 UTC (rev 186066)
+++ trunk/Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.mm	2015-06-29 06:51:28 UTC (rev 186067)
@@ -211,9 +211,9 @@
 
 #pragma mark - WebVideoFullscreenManagerProxy
 
-Ref<WebVideoFullscreenManagerProxy> WebVideoFullscreenManagerProxy::create(WebPageProxy& page)
+RefPtr<WebVideoFullscreenManagerProxy> WebVideoFullscreenManagerProxy::create(WebPageProxy& page)
 {
-    return adoptRef(*new WebVideoFullscreenManagerProxy(page));
+    return adoptRef(new WebVideoFullscreenManagerProxy(page));
 }
 
 WebVideoFullscreenManagerProxy::WebVideoFullscreenManagerProxy(WebPageProxy& page)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to