| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2013 Google Inc. All rights reserved. | 9 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 enum RequestType { | 61 enum RequestType { |
| 62 UnprefixedRequest, // Element.requestFullscreen() | 62 UnprefixedRequest, // Element.requestFullscreen() |
| 63 PrefixedRequest, // Element.webkitRequestFullscreen() | 63 PrefixedRequest, // Element.webkitRequestFullscreen() |
| 64 PrefixedMozillaRequest, // Element.webkitRequestFullScreen() | 64 PrefixedMozillaRequest, // Element.webkitRequestFullScreen() |
| 65 PrefixedMozillaAllowKeyboardInputRequest, // Element.webkitRequestFullSc
reen(Element.ALLOW_KEYBOARD_INPUT) | 65 PrefixedMozillaAllowKeyboardInputRequest, // Element.webkitRequestFullSc
reen(Element.ALLOW_KEYBOARD_INPUT) |
| 66 PrefixedVideoRequest, // HTMLVideoElement.webkitEnterFullscreen() and we
bkitEnterFullScreen() | 66 PrefixedVideoRequest, // HTMLVideoElement.webkitEnterFullscreen() and we
bkitEnterFullScreen() |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 void requestFullscreen(Element&, RequestType); | 69 void requestFullscreen(Element&, RequestType); |
| 70 void fullyExitFullscreen(); | 70 static void fullyExitFullscreen(Document&); |
| 71 void exitFullscreen(); | 71 void exitFullscreen(); |
| 72 | 72 |
| 73 static bool fullscreenEnabled(Document&); | 73 static bool fullscreenEnabled(Document&); |
| 74 Element* fullscreenElement() const { return !m_fullScreenElementStack.isEmpt
y() ? m_fullScreenElementStack.last().first.get() : 0; } | 74 Element* fullscreenElement() const { return !m_fullScreenElementStack.isEmpt
y() ? m_fullScreenElementStack.last().first.get() : 0; } |
| 75 | 75 |
| 76 void willEnterFullScreenForElement(Element*); | 76 void willEnterFullScreenForElement(Element*); |
| 77 void didEnterFullScreenForElement(Element*); | 77 void didEnterFullScreenForElement(Element*); |
| 78 void willExitFullScreenForElement(Element*); | 78 void willExitFullScreenForElement(Element*); |
| 79 void didExitFullScreenForElement(Element*); | 79 void didExitFullScreenForElement(Element*); |
| 80 | 80 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 // Needed by the HeapVector<> element stack. | 142 // Needed by the HeapVector<> element stack. |
| 143 namespace WTF { | 143 namespace WTF { |
| 144 | 144 |
| 145 template<>struct IsPod<blink::Fullscreen::RequestType> { | 145 template<>struct IsPod<blink::Fullscreen::RequestType> { |
| 146 static const bool value = true; | 146 static const bool value = true; |
| 147 }; | 147 }; |
| 148 | 148 |
| 149 } // namespace WTF | 149 } // namespace WTF |
| 150 | 150 |
| 151 #endif // Fullscreen_h | 151 #endif // Fullscreen_h |
| OLD | NEW |