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; |