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

Unified Diff: third_party/WebKit/Source/core/frame/FrameHost.cpp

Issue 2214263003: CustomElements: taking CustomElementReactionStack out of frameHost (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « third_party/WebKit/Source/core/frame/FrameHost.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameHost.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameHost.cpp b/third_party/WebKit/Source/core/frame/FrameHost.cpp
index f1b5c4e43777bbaf164f295da3f69e3acd7462ac..90dc46e6f8c80c6f95285822dc0f8b6cc7e4a7ad 100644
--- a/third_party/WebKit/Source/core/frame/FrameHost.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameHost.cpp
@@ -30,7 +30,6 @@
#include "core/frame/FrameHost.h"
-#include "core/dom/custom/CustomElementReactionStack.h"
#include "core/frame/EventHandlerRegistry.h"
#include "core/frame/FrameView.h"
#include "core/frame/PageScaleConstraints.h"
@@ -60,7 +59,6 @@ FrameHost::FrameHost(Page& page)
m_page->chromeClient()))
, m_eventHandlerRegistry(new EventHandlerRegistry(*this))
, m_consoleMessageStorage(new ConsoleMessageStorage())
- , m_customElementReactionStack(new CustomElementReactionStack())
, m_subframeCount(0)
{
}
@@ -185,16 +183,6 @@ const ConsoleMessageStorage& FrameHost::consoleMessageStorage() const
return *m_consoleMessageStorage;
}
-CustomElementReactionStack& FrameHost::customElementReactionStack()
-{
- return *m_customElementReactionStack;
-}
-
-const CustomElementReactionStack& FrameHost::customElementReactionStack() const
-{
- return *m_customElementReactionStack;
-}
-
DEFINE_TRACE(FrameHost)
{
visitor->trace(m_page);
@@ -203,7 +191,6 @@ DEFINE_TRACE(FrameHost)
visitor->trace(m_overscrollController);
visitor->trace(m_eventHandlerRegistry);
visitor->trace(m_consoleMessageStorage);
- visitor->trace(m_customElementReactionStack);
}
#if ENABLE(ASSERT)
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698