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

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

Issue 14467003: Remove ENABLE_DIALOG_ELEMENT (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index 7585c14d2e3df0169b02ab24a9a5abba008f71ba..7e888f184fa4f9c8e05266aaaee87a6b51f9d94d 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -5229,7 +5229,6 @@ void Document::addDocumentToFullScreenChangeEventQueue(Document* doc)
m_fullScreenChangeEventTargetQueue.append(target);
}
-#if ENABLE(DIALOG_ELEMENT)
void Document::addToTopLayer(Element* element)
{
if (element->isInTopLayer())
@@ -5248,7 +5247,6 @@ void Document::removeFromTopLayer(Element* element)
m_topLayerElements.remove(position);
element->setIsInTopLayer(false);
}
-#endif
void Document::webkitExitPointerLock()
{
@@ -5717,9 +5715,7 @@ void Document::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
info.addMember(m_fullScreenChangeEventTargetQueue, "fullScreenChangeEventTargetQueue");
info.addMember(m_fullScreenErrorEventTargetQueue, "fullScreenErrorEventTargetQueue");
info.addMember(m_savedPlaceholderRenderStyle, "savedPlaceholderRenderStyle");
-#if ENABLE(DIALOG_ELEMENT)
info.addMember(m_topLayerElements, "topLayerElements");
-#endif
info.addMember(m_loadEventDelayTimer, "loadEventDelayTimer");
info.addMember(m_viewportArguments, "viewportArguments");
info.addMember(m_documentTiming, "documentTiming");

Powered by Google App Engine
This is Rietveld 408576698