| 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 24 matching lines...) Expand all Loading... |
| 35 #include "platform/geometry/LayoutRect.h" | 35 #include "platform/geometry/LayoutRect.h" |
| 36 #include "wtf/Deque.h" | 36 #include "wtf/Deque.h" |
| 37 #include "wtf/RefPtr.h" | 37 #include "wtf/RefPtr.h" |
| 38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 class Document; | 42 class Document; |
| 43 class Element; | 43 class Element; |
| 44 class Node; | 44 class Node; |
| 45 class RenderFullScreen; |
| 45 class RenderStyle; | 46 class RenderStyle; |
| 46 class ExecutionContext; | 47 class ExecutionContext; |
| 47 | 48 |
| 48 class FullscreenElementStack FINAL | 49 class FullscreenElementStack FINAL |
| 49 : public DocumentSupplement | 50 : public DocumentSupplement |
| 50 , public DocumentLifecycleObserver { | 51 , public DocumentLifecycleObserver { |
| 51 public: | 52 public: |
| 52 virtual ~FullscreenElementStack(); | 53 virtual ~FullscreenElementStack(); |
| 53 static const char* supplementName(); | 54 static const char* supplementName(); |
| 54 static FullscreenElementStack* from(Document*); | 55 static FullscreenElementStack* from(Document*); |
| 55 static FullscreenElementStack* fromIfExists(Document*); | 56 static FullscreenElementStack* fromIfExists(Document*); |
| 56 static Element* fullscreenElementFrom(Document*); | 57 static Element* fullscreenElementFrom(Document*); |
| 57 static Element* currentFullScreenElementFrom(Document*); | 58 static Element* currentFullScreenElementFrom(Document*); |
| 58 static bool isFullScreen(Document*); | 59 static bool isFullScreen(Document*); |
| 59 static bool isActiveFullScreenElement(const Element*); | 60 static bool isActiveFullScreenElement(const Element*); |
| 60 | 61 |
| 61 enum FullScreenCheckType { | 62 enum FullScreenCheckType { |
| 62 EnforceIFrameAllowFullScreenRequirement, | 63 EnforceIFrameAllowFullScreenRequirement, |
| 63 ExemptIFrameAllowFullScreenRequirement, | 64 ExemptIFrameAllowFullScreenRequirement, |
| 64 }; | 65 }; |
| 65 | 66 |
| 66 void requestFullScreenForElement(Element*, unsigned short flags, FullScreenC
heckType); | 67 void requestFullScreenForElement(Element*, unsigned short flags, FullScreenC
heckType); |
| 67 void webkitCancelFullScreen(); | 68 void webkitCancelFullScreen(); |
| 68 | 69 |
| 69 void webkitWillEnterFullScreenForElement(Element*); | 70 void webkitWillEnterFullScreenForElement(Element*); |
| 70 void webkitDidEnterFullScreenForElement(Element*); | 71 void webkitDidEnterFullScreenForElement(Element*); |
| 71 void webkitWillExitFullScreenForElement(Element*); | 72 void webkitWillExitFullScreenForElement(Element*); |
| 72 void webkitDidExitFullScreenForElement(Element*); | 73 void webkitDidExitFullScreenForElement(Element*); |
| 73 | 74 |
| 75 void setFullScreenRenderer(RenderFullScreen*); |
| 76 RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer;
} |
| 77 void fullScreenRendererDestroyed(); |
| 78 |
| 74 void clearFullscreenElementStack(); | 79 void clearFullscreenElementStack(); |
| 75 void popFullscreenElementStack(); | 80 void popFullscreenElementStack(); |
| 76 void pushFullscreenElementStack(Element*); | 81 void pushFullscreenElementStack(Element*); |
| 77 void addDocumentToFullScreenChangeEventQueue(Document*); | 82 void addDocumentToFullScreenChangeEventQueue(Document*); |
| 78 | 83 |
| 79 bool fullScreenIsAllowedForElement(Element*) const; | 84 bool fullScreenIsAllowedForElement(Element*) const; |
| 80 void fullScreenElementRemoved(); | 85 void fullScreenElementRemoved(); |
| 81 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false)
; | 86 void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false)
; |
| 82 | 87 |
| 83 // W3C API | 88 // W3C API |
| (...skipping 12 matching lines...) Expand all Loading... |
| 96 static FullscreenElementStack* fromIfExistsSlow(Document*); | 101 static FullscreenElementStack* fromIfExistsSlow(Document*); |
| 97 | 102 |
| 98 explicit FullscreenElementStack(Document*); | 103 explicit FullscreenElementStack(Document*); |
| 99 | 104 |
| 100 Document* document(); | 105 Document* document(); |
| 101 void fullScreenChangeDelayTimerFired(Timer<FullscreenElementStack>*); | 106 void fullScreenChangeDelayTimerFired(Timer<FullscreenElementStack>*); |
| 102 | 107 |
| 103 bool m_areKeysEnabledInFullScreen; | 108 bool m_areKeysEnabledInFullScreen; |
| 104 RefPtr<Element> m_fullScreenElement; | 109 RefPtr<Element> m_fullScreenElement; |
| 105 Vector<RefPtr<Element> > m_fullScreenElementStack; | 110 Vector<RefPtr<Element> > m_fullScreenElementStack; |
| 111 RenderFullScreen* m_fullScreenRenderer; |
| 106 Timer<FullscreenElementStack> m_fullScreenChangeDelayTimer; | 112 Timer<FullscreenElementStack> m_fullScreenChangeDelayTimer; |
| 107 Deque<RefPtr<Node> > m_fullScreenChangeEventTargetQueue; | 113 Deque<RefPtr<Node> > m_fullScreenChangeEventTargetQueue; |
| 108 Deque<RefPtr<Node> > m_fullScreenErrorEventTargetQueue; | 114 Deque<RefPtr<Node> > m_fullScreenErrorEventTargetQueue; |
| 109 LayoutRect m_savedPlaceholderFrameRect; | 115 LayoutRect m_savedPlaceholderFrameRect; |
| 110 RefPtr<RenderStyle> m_savedPlaceholderRenderStyle; | 116 RefPtr<RenderStyle> m_savedPlaceholderRenderStyle; |
| 111 }; | 117 }; |
| 112 | 118 |
| 113 inline bool FullscreenElementStack::isActiveFullScreenElement(const Element* ele
ment) | 119 inline bool FullscreenElementStack::isActiveFullScreenElement(const Element* ele
ment) |
| 114 { | 120 { |
| 115 FullscreenElementStack* controller = fromIfExists(&element->document()); | 121 FullscreenElementStack* controller = fromIfExists(&element->document()); |
| 116 if (!controller) | 122 if (!controller) |
| 117 return false; | 123 return false; |
| 118 return controller->webkitIsFullScreen() && controller->webkitCurrentFullScre
enElement() == element; | 124 return controller->webkitIsFullScreen() && controller->webkitCurrentFullScre
enElement() == element; |
| 119 } | 125 } |
| 120 | 126 |
| 121 inline FullscreenElementStack* FullscreenElementStack::fromIfExists(Document* do
cument) | 127 inline FullscreenElementStack* FullscreenElementStack::fromIfExists(Document* do
cument) |
| 122 { | 128 { |
| 123 if (!document->hasFullscreenElementStack()) | 129 if (!document->hasFullscreenElementStack()) |
| 124 return 0; | 130 return 0; |
| 125 return fromIfExistsSlow(document); | 131 return fromIfExistsSlow(document); |
| 126 } | 132 } |
| 127 | 133 |
| 128 } // namespace WebCore | 134 } // namespace WebCore |
| 129 | 135 |
| 130 #endif // FullscreenElementStack_h | 136 #endif // FullscreenElementStack_h |
| OLD | NEW |