Title: [110220] trunk/Source/WebKit2
Revision
110220
Author
[email protected]
Date
2012-03-08 15:28:02 -0800 (Thu, 08 Mar 2012)

Log Message

Unreviewed build fix.

Add stub implementations of beganEnterFullScreen and beganExitFullScreen
to platform-specific WebFullScreenManagerProxy implementations.

* UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp:
(WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
(WebKit::WebFullScreenManagerProxy::beganExitFullScreen):
* UIProcess/qt/WebFullScreenManagerProxyQt.cpp:
(WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
(WebKit::WebFullScreenManagerProxy::beganExitFullScreen):
* UIProcess/win/WebFullScreenManagerProxyWin.cpp:
(WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
(WebKit::WebFullScreenManagerProxy::beganExitFullScreen):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (110219 => 110220)


--- trunk/Source/WebKit2/ChangeLog	2012-03-08 23:24:48 UTC (rev 110219)
+++ trunk/Source/WebKit2/ChangeLog	2012-03-08 23:28:02 UTC (rev 110220)
@@ -1,3 +1,20 @@
+2012-03-08  Jer Noble  <[email protected]>
+
+        Unreviewed build fix.
+        
+        Add stub implementations of beganEnterFullScreen and beganExitFullScreen
+        to platform-specific WebFullScreenManagerProxy implementations.
+
+        * UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp:
+        (WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
+        (WebKit::WebFullScreenManagerProxy::beganExitFullScreen):
+        * UIProcess/qt/WebFullScreenManagerProxyQt.cpp:
+        (WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
+        (WebKit::WebFullScreenManagerProxy::beganExitFullScreen):
+        * UIProcess/win/WebFullScreenManagerProxyWin.cpp:
+        (WebKit::WebFullScreenManagerProxy::beganEnterFullScreen):
+        (WebKit::WebFullScreenManagerProxy::beganExitFullScreen):
+
 2012-03-07  Jon Lee  <[email protected]>
 
         Add support for ENABLE(LEGACY_NOTIFICATIONS)

Modified: trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp (110219 => 110220)


--- trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp	2012-03-08 23:24:48 UTC (rev 110219)
+++ trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp	2012-03-08 23:28:02 UTC (rev 110220)
@@ -46,6 +46,16 @@
     notImplemented();
 }
 
+void WebFullScreenManagerProxy::beganEnterFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    notImplemented();
+}
+
+void WebFullScreenManagerProxy::beganExitFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    notImplemented();
+}
+
 } // namespace WebKit
 
 #endif // ENABLE(FULLSCREEN_API)

Modified: trunk/Source/WebKit2/UIProcess/qt/WebFullScreenManagerProxyQt.cpp (110219 => 110220)


--- trunk/Source/WebKit2/UIProcess/qt/WebFullScreenManagerProxyQt.cpp	2012-03-08 23:24:48 UTC (rev 110219)
+++ trunk/Source/WebKit2/UIProcess/qt/WebFullScreenManagerProxyQt.cpp	2012-03-08 23:28:02 UTC (rev 110220)
@@ -46,6 +46,16 @@
     notImplemented();
 }
 
+void WebFullScreenManagerProxy::beganEnterFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    notImplemented();
+}
+
+void WebFullScreenManagerProxy::beganExitFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    notImplemented();
+}
+
 } // namespace WebKit
 
 #endif // ENABLE(FULLSCREEN_API)

Modified: trunk/Source/WebKit2/UIProcess/win/WebFullScreenManagerProxyWin.cpp (110219 => 110220)


--- trunk/Source/WebKit2/UIProcess/win/WebFullScreenManagerProxyWin.cpp	2012-03-08 23:24:48 UTC (rev 110219)
+++ trunk/Source/WebKit2/UIProcess/win/WebFullScreenManagerProxyWin.cpp	2012-03-08 23:28:02 UTC (rev 110220)
@@ -57,6 +57,16 @@
     m_webView->fullScreenController()->exitFullScreen();
 }
 
+void WebFullScreenManagerProxy::beganEnterFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    // No-op.
+}
+
+void WebFullScreenManagerProxy::beganExitFullScreen(const IntRect& initialFrame, const IntRect& finalFrame)
+{
+    // No-op.
+}
+
 } // namespace WebKit
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to