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

Unified Diff: Source/core/dom/ElementFullscreen.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/ElementFullscreen.h ('k') | Source/core/dom/ElementFullscreen.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementFullscreen.cpp
diff --git a/Source/core/dom/ElementFullscreen.cpp b/Source/core/dom/ElementFullscreen.cpp
index 1e0bf67d822c09c54cbfb261e81248b5738e7e70..a133e8f029db2eee9f2a8ea8d9449f594f593059 100644
--- a/Source/core/dom/ElementFullscreen.cpp
+++ b/Source/core/dom/ElementFullscreen.cpp
@@ -19,14 +19,4 @@ void ElementFullscreen::webkitRequestFullscreen(Element& element)
Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::PrefixedRequest);
}
-void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags)
-{
- Fullscreen::RequestType requestType;
- if (flags & ALLOW_KEYBOARD_INPUT)
- requestType = Fullscreen::PrefixedMozillaAllowKeyboardInputRequest;
- else
- requestType = Fullscreen::PrefixedMozillaRequest;
- Fullscreen::from(element.document()).requestFullscreen(element, requestType);
-}
-
} // namespace blink
« no previous file with comments | « Source/core/dom/ElementFullscreen.h ('k') | Source/core/dom/ElementFullscreen.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698