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

Unified Diff: Source/core/dom/FullscreenElementStack.h

Issue 359473008: Make FullscreenElementStack methods private where appropriate (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FullscreenElementStack.h
diff --git a/Source/core/dom/FullscreenElementStack.h b/Source/core/dom/FullscreenElementStack.h
index 46c9d052e066c1a308cd2495606ffa6a1fd068e0..069b65bb003701a7ae8b0e9e4ba63e7b38f5fb25 100644
--- a/Source/core/dom/FullscreenElementStack.h
+++ b/Source/core/dom/FullscreenElementStack.h
@@ -75,12 +75,6 @@ public:
RenderFullScreen* fullScreenRenderer() const { return m_fullScreenRenderer; }
void fullScreenRendererDestroyed();
- void clearFullscreenElementStack();
- void popFullscreenElementStack();
- void pushFullscreenElementStack(Element&);
- void addDocumentToFullScreenChangeEventQueue(Document&);
-
- void fullScreenElementRemoved();
void removeFullScreenElementOfSubtree(Node*, bool amongChildrenOnly = false);
// W3C API
@@ -105,8 +99,15 @@ private:
explicit FullscreenElementStack(Document&);
Document* document();
+
+ void clearFullscreenElementStack();
+ void popFullscreenElementStack();
+ void pushFullscreenElementStack(Element&);
+ void addDocumentToFullScreenChangeEventQueue(Document&);
void fullScreenChangeDelayTimerFired(Timer<FullscreenElementStack>*);
+ void fullScreenElementRemoved();
+
bool m_areKeysEnabledInFullScreen;
RefPtrWillBeMember<Element> m_fullScreenElement;
WillBeHeapVector<RefPtrWillBeMember<Element> > m_fullScreenElementStack;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698