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

Side by Side Diff: Source/core/dom/ElementFullscreen.cpp

Issue 395633011: Implement the unprefixed the Fullscreen API (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 unified diff | Download patch | Annotate | Revision Log
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/FullscreenElementStack.h" 8 #include "core/dom/FullscreenElementStack.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 void ElementFullscreen::requestFullscreen(Element& element)
13 {
14 FullscreenElementStack::from(element.document()).requestFullscreen(element, FullscreenElementStack::UnprefixedRequest);
15 }
16
12 void ElementFullscreen::webkitRequestFullscreen(Element& element) 17 void ElementFullscreen::webkitRequestFullscreen(Element& element)
13 { 18 {
14 FullscreenElementStack::from(element.document()).requestFullscreen(element, FullscreenElementStack::PrefixedRequest); 19 FullscreenElementStack::from(element.document()).requestFullscreen(element, FullscreenElementStack::PrefixedRequest);
15 } 20 }
16 21
17 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags) 22 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags)
18 { 23 {
19 FullscreenElementStack::RequestType requestType; 24 FullscreenElementStack::RequestType requestType;
20 if (flags & ALLOW_KEYBOARD_INPUT) 25 if (flags & ALLOW_KEYBOARD_INPUT)
21 requestType = FullscreenElementStack::PrefixedMozillaAllowKeyboardInputR equest; 26 requestType = FullscreenElementStack::PrefixedMozillaAllowKeyboardInputR equest;
22 else 27 else
23 requestType = FullscreenElementStack::PrefixedMozillaRequest; 28 requestType = FullscreenElementStack::PrefixedMozillaRequest;
24 FullscreenElementStack::from(element.document()).requestFullscreen(element, requestType); 29 FullscreenElementStack::from(element.document()).requestFullscreen(element, requestType);
25 } 30 }
26 31
27 } // namespace blink 32 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698