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