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

Unified Diff: Source/WebCore/dom/Document.h

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h ('k') | Source/WebCore/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/Document.h
===================================================================
--- Source/WebCore/dom/Document.h (revision 113078)
+++ Source/WebCore/dom/Document.h (working copy)
@@ -1083,11 +1083,6 @@
void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false);
bool isAnimatingFullScreen() const;
void setAnimatingFullScreen(bool);
-
- // W3C API
- bool webkitFullscreenEnabled() const;
- Element* webkitFullscreenElement() const { return !m_fullScreenElementStack.isEmpty() ? m_fullScreenElementStack.first().get() : 0; }
- void webkitExitFullscreen();
#endif
// Used to allow element that loads data without going through a FrameLoader to delay the 'load' event.
@@ -1200,13 +1195,6 @@
HTMLCollection* cachedCollection(CollectionType);
-#if ENABLE(FULLSCREEN_API)
- void clearFullscreenElementStack();
- void popFullscreenElementStack();
- void pushFullscreenElementStack(Element*);
- void addDocumentToFullScreenChangeEventQueue(Document*);
-#endif
-
int m_guardRefCount;
OwnPtr<CSSStyleSelector> m_styleSelector;
@@ -1438,11 +1426,10 @@
#if ENABLE(FULLSCREEN_API)
bool m_areKeysEnabledInFullScreen;
RefPtr<Element> m_fullScreenElement;
- Deque<RefPtr<Element> > m_fullScreenElementStack;
RenderFullScreen* m_fullScreenRenderer;
Timer<Document> m_fullScreenChangeDelayTimer;
- Deque<RefPtr<Node> > m_fullScreenChangeEventTargetQueue;
- Deque<RefPtr<Node> > m_fullScreenErrorEventTargetQueue;
+ Deque<RefPtr<Element> > m_fullScreenChangeEventTargetQueue;
+ Deque<RefPtr<Element> > m_fullScreenErrorEventTargetQueue;
bool m_isAnimatingFullScreen;
LayoutRect m_savedPlaceholderFrameRect;
RefPtr<RenderStyle> m_savedPlaceholderRenderStyle;
« no previous file with comments | « Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h ('k') | Source/WebCore/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698