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

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

Issue 947393002: InlinedVisitor: Migrate dom to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/ExecutionContext.cpp
diff --git a/Source/core/dom/ExecutionContext.cpp b/Source/core/dom/ExecutionContext.cpp
index 2d44059a37d7fb6f9003a9f92fe7ae04e3eb1e37..ebce1cbfad2653c1989e289108dfe396d7fbed56 100644
--- a/Source/core/dom/ExecutionContext.cpp
+++ b/Source/core/dom/ExecutionContext.cpp
@@ -53,7 +53,7 @@ public:
, m_callStack(callStack)
{
}
- void trace(Visitor* visitor)
+ DEFINE_INLINE_TRACE()
{
visitor->trace(m_callStack);
}
@@ -231,7 +231,7 @@ bool ExecutionContext::isWindowInteractionAllowed() const
return m_windowInteractionTokens > 0 || WindowFocusAllowedIndicator::windowFocusAllowed();
}
-void ExecutionContext::trace(Visitor* visitor)
+DEFINE_TRACE(ExecutionContext)
{
#if ENABLE(OILPAN)
visitor->trace(m_pendingExceptions);

Powered by Google App Engine
This is Rietveld 408576698