Title: [175489] trunk/Source/WebCore
Revision
175489
Author
o...@webkit.org
Date
2014-11-03 14:14:30 -0800 (Mon, 03 Nov 2014)

Log Message

Fix the !ENABLE(VIDEO) build after r175279
https://bugs.webkit.org/show_bug.cgi?id=138320

Reviewed by Jer Noble.

* page/ChromeClient.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175488 => 175489)


--- trunk/Source/WebCore/ChangeLog	2014-11-03 21:19:15 UTC (rev 175488)
+++ trunk/Source/WebCore/ChangeLog	2014-11-03 22:14:30 UTC (rev 175489)
@@ -1,3 +1,12 @@
+2014-11-03  Csaba Osztrogonác  <o...@webkit.org>
+
+        Fix the !ENABLE(VIDEO) build after r175279
+        https://bugs.webkit.org/show_bug.cgi?id=138320
+
+        Reviewed by Jer Noble.
+
+        * page/ChromeClient.h:
+
 2014-11-03  Chris Dumez  <cdu...@apple.com>
 
         Support modern range loops over CSSValueList

Modified: trunk/Source/WebCore/page/ChromeClient.h (175488 => 175489)


--- trunk/Source/WebCore/page/ChromeClient.h	2014-11-03 21:19:15 UTC (rev 175488)
+++ trunk/Source/WebCore/page/ChromeClient.h	2014-11-03 22:14:30 UTC (rev 175489)
@@ -340,7 +340,9 @@
 #endif
 
     virtual bool supportsVideoFullscreen() { return false; }
+#if ENABLE(VIDEO)
     virtual void enterVideoFullscreenForVideoElement(HTMLVideoElement*, HTMLMediaElement::VideoFullscreenMode) { }
+#endif
     virtual void exitVideoFullscreen() { }
     virtual bool requiresFullscreenForVideoPlayback() { return false; } 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to