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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/ElementFullscreen.h ('k') | Source/core/dom/ElementFullscreen.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/dom/ElementFullscreen.h" 6 #include "core/dom/ElementFullscreen.h"
7 7
8 #include "core/dom/Fullscreen.h" 8 #include "core/dom/Fullscreen.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 void ElementFullscreen::requestFullscreen(Element& element) 12 void ElementFullscreen::requestFullscreen(Element& element)
13 { 13 {
14 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen:: UnprefixedRequest); 14 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen:: UnprefixedRequest);
15 } 15 }
16 16
17 void ElementFullscreen::webkitRequestFullscreen(Element& element) 17 void ElementFullscreen::webkitRequestFullscreen(Element& element)
18 { 18 {
19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen:: PrefixedRequest); 19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen:: PrefixedRequest);
20 } 20 }
21 21
22 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags)
23 {
24 Fullscreen::RequestType requestType;
25 if (flags & ALLOW_KEYBOARD_INPUT)
26 requestType = Fullscreen::PrefixedMozillaAllowKeyboardInputRequest;
27 else
28 requestType = Fullscreen::PrefixedMozillaRequest;
29 Fullscreen::from(element.document()).requestFullscreen(element, requestType) ;
30 }
31
32 } // namespace blink 22 } // namespace blink
OLDNEW
« 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