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