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

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

Issue 476763004: Rename FullscreenElementStack to just Fullscreen (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
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/Fullscreen.h » ('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/FullscreenElementStack.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 FullscreenElementStack::from(element.document()).requestFullscreen(element, FullscreenElementStack::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 FullscreenElementStack::from(element.document()).requestFullscreen(element, FullscreenElementStack::PrefixedRequest); 19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen:: PrefixedRequest);
20 } 20 }
21 21
22 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags) 22 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags)
23 { 23 {
24 FullscreenElementStack::RequestType requestType; 24 Fullscreen::RequestType requestType;
25 if (flags & ALLOW_KEYBOARD_INPUT) 25 if (flags & ALLOW_KEYBOARD_INPUT)
26 requestType = FullscreenElementStack::PrefixedMozillaAllowKeyboardInputR equest; 26 requestType = Fullscreen::PrefixedMozillaAllowKeyboardInputRequest;
27 else 27 else
28 requestType = FullscreenElementStack::PrefixedMozillaRequest; 28 requestType = Fullscreen::PrefixedMozillaRequest;
29 FullscreenElementStack::from(element.document()).requestFullscreen(element, requestType); 29 Fullscreen::from(element.document()).requestFullscreen(element, requestType) ;
30 } 30 }
31 31
32 } // namespace blink 32 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/Fullscreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698