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

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

Issue 18896003: [WIP] Migrate Fullscreen to use top layer instead of RenderFullScreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix some failing tests Created 6 years, 11 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/fullscreen.css ('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 aa3b0be74a4ce2ceb1aa3b4ef4a2c3fbaf7888b5..c9e83e2c180d006b3cbea44e5f519477128459b3 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -986,6 +986,8 @@ public:
void addToTopLayer(Element*, const Element* before = 0);
void removeFromTopLayer(Element*);
const Vector<RefPtr<Element> >& topLayerElements() const { return m_topLayerElements; }
+ void addToModalDialogStack(HTMLDialogElement*);
+ void removeFromModalDialogStack(HTMLDialogElement*);
HTMLDialogElement* activeModalDialog() const;
const Document* templateDocument() const;
@@ -1248,6 +1250,7 @@ private:
bool m_hasFullscreenElementStack; // For early return in FullscreenElementStack::fromIfExists()
Vector<RefPtr<Element> > m_topLayerElements;
+ HTMLDialogElement* m_activeModalDialog;
int m_loadEventDelayCount;
Timer<Document> m_loadEventDelayTimer;
« no previous file with comments | « Source/core/css/fullscreen.css ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698