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

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

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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
Index: third_party/WebKit/Source/core/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index 415c23bb464010b985f6085b69ac62fb1e8245da..3db0c522696972f8936200d475150c277661b720 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -1079,6 +1079,7 @@ class CORE_EXPORT Document : public ContainerNode,
void enqueueResizeEvent();
void enqueueScrollEventForNode(Node*);
+ void enqueueAnimationFrameTask(std::unique_ptr<WTF::Closure>);
void enqueueAnimationFrameEvent(Event*);
// Only one event for a target/event type combination will be dispatched per
// frame.
@@ -1090,9 +1091,6 @@ class CORE_EXPORT Document : public ContainerNode,
void dispatchEventsForPrinting();
- bool hasFullscreenSupplement() const { return m_hasFullscreenSupplement; }
- void setHasFullscreenSupplement() { m_hasFullscreenSupplement = true; }
-
void exitPointerLock();
Element* pointerLockElement() const;
@@ -1592,9 +1590,8 @@ class CORE_EXPORT Document : public ContainerNode,
WeakMember<Document> m_contextDocument;
- // For early return in Fullscreen::fromIfExists()
- bool m_hasFullscreenSupplement;
-
+ // The last element in |m_topLayerElements| is topmost in the top layer
+ // stack and is thus the one that will be visually on top.
HeapVector<Member<Element>> m_topLayerElements;
int m_loadEventDelayCount;
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698