Searched defs:FullscreenElementStack (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DFullscreenElementStack.h49 class FullscreenElementStack class in namespace:WebCore
53 virtual ~FullscreenElementStack();
55 static FullscreenElementStack* from(Document*);
56 static FullscreenElementStack* fromIfExists(Document*);
101 static FullscreenElementStack* fromIfExistsSlow(Document*);
103 explicit FullscreenElementStack(Document*);
106 void fullScreenChangeDelayTimerFired(Timer<FullscreenElementStack>*);
112 Timer<FullscreenElementStack> m_fullScreenChangeDelayTimer;
119 inline bool FullscreenElementStack::isActiveFullScreenElement(const Element* element)
121 FullscreenElementStack* controlle
[all...]
H A DFullscreenElementStack.cpp29 #include "core/dom/FullscreenElementStack.h"
59 const char* FullscreenElementStack::supplementName()
61 return "FullscreenElementStack";
64 FullscreenElementStack* FullscreenElementStack::from(Document* document)
66 FullscreenElementStack* fullscreen = fromIfExists(document);
68 fullscreen = new FullscreenElementStack(document);
75 FullscreenElementStack* FullscreenElementStack::fromIfExistsSlow(Document* document)
77 return static_cast<FullscreenElementStack*>(Supplemen
101 FullscreenElementStack::FullscreenElementStack(Document* document) function in class:WebCore::FullscreenElementStack
[all...]

Completed in 78 milliseconds