Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(674)

Unified Diff: Source/core/dom/DocumentFullscreen.cpp

Issue 395633011: Implement the unprefixed the Fullscreen API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/DocumentFullscreen.h ('k') | Source/core/dom/DocumentFullscreen.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentFullscreen.cpp
diff --git a/Source/core/dom/DocumentFullscreen.cpp b/Source/core/dom/DocumentFullscreen.cpp
index c437a61b50dac171263b8e9e3df3473adf2d7cc2..110b5fe6b9dfc277a71530ba99f31f0349039a9d 100644
--- a/Source/core/dom/DocumentFullscreen.cpp
+++ b/Source/core/dom/DocumentFullscreen.cpp
@@ -30,6 +30,23 @@
namespace blink {
+bool DocumentFullscreen::fullscreenEnabled(Document& document)
+{
+ return FullscreenElementStack::fullscreenEnabled(document);
+}
+
+Element* DocumentFullscreen::fullscreenElement(Document& document)
+{
+ if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
+ return fullscreen->fullscreenElement();
+ return 0;
+}
+
+void DocumentFullscreen::exitFullscreen(Document& document)
+{
+ FullscreenElementStack::from(document).exitFullscreen();
+}
+
bool DocumentFullscreen::webkitIsFullScreen(Document& document)
{
if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
@@ -51,21 +68,4 @@ Element* DocumentFullscreen::webkitCurrentFullScreenElement(Document& document)
return 0;
}
-bool DocumentFullscreen::webkitFullscreenEnabled(Document& document)
-{
- return FullscreenElementStack::fullscreenEnabled(document);
-}
-
-Element* DocumentFullscreen::webkitFullscreenElement(Document& document)
-{
- if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
- return fullscreen->fullscreenElement();
- return 0;
-}
-
-void DocumentFullscreen::webkitExitFullscreen(Document& document)
-{
- FullscreenElementStack::from(document).exitFullscreen();
-}
-
} // namespace blink
« no previous file with comments | « Source/core/dom/DocumentFullscreen.h ('k') | Source/core/dom/DocumentFullscreen.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698