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

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

Issue 681113006: Remove keyboard event filtering in fullscreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: oops Created 6 years, 2 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 5718fb20e7f3e0c9b5764579da04726e857577bd..6d75121c1b8233c1adb87d01591d50f1ae83e752 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::webkitFullScreenKeyboardInputAllowed(Document& document)
-{
- if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
- return fullscreen->webkitFullScreenKeyboardInputAllowed();
- return false;
-}
-
Element* DocumentFullscreen::webkitCurrentFullScreenElement(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