| OLD | NEW |
| 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 |
| OLD | NEW |