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

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

Issue 476353002: Remove webkitIsFullScreen everywhere except in bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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 e628a4a26995a64d50b09483953c8f48901b627a..5718fb20e7f3e0c9b5764579da04726e857577bd 100644
--- a/Source/core/dom/DocumentFullscreen.cpp
+++ b/Source/core/dom/DocumentFullscreen.cpp
@@ -47,13 +47,6 @@ void DocumentFullscreen::exitFullscreen(Document& document)
Fullscreen::from(document).exitFullscreen();
}
-bool DocumentFullscreen::webkitIsFullScreen(Document& document)
-{
- if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
- return fullscreen->webkitIsFullScreen();
- return false;
-}
-
bool DocumentFullscreen::webkitFullScreenKeyboardInputAllowed(Document& document)
{
if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
« 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