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

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

Issue 476763004: Rename FullscreenElementStack to just Fullscreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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/core/css/resolver/SharedStyleFinder.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 238fb681928adf2549d16797e639312722402a33..2c3c9b93518086d99f91f0705548559c7c721b55 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -911,8 +911,8 @@ public:
void enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>);
void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> >&);
- bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack; }
- void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; }
+ bool hasFullscreenSupplement() const { return m_hasFullscreenSupplement; }
+ void setHasFullscreenSupplement() { m_hasFullscreenSupplement = true; }
void exitPointerLock();
Element* pointerLockElement() const;
@@ -1304,7 +1304,7 @@ private:
#endif
WeakPtrWillBeWeakMember<Document> m_contextDocument;
- bool m_hasFullscreenElementStack; // For early return in FullscreenElementStack::fromIfExists()
+ bool m_hasFullscreenSupplement; // For early return in Fullscreen::fromIfExists()
WillBeHeapVector<RefPtrWillBeMember<Element> > m_topLayerElements;
« no previous file with comments | « Source/core/css/resolver/SharedStyleFinder.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698