| Index: third_party/WebKit/Source/core/dom/ScopedWindowFocusAllowedIndicator.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ScopedWindowFocusAllowedIndicator.h b/third_party/WebKit/Source/core/dom/ScopedWindowFocusAllowedIndicator.h
|
| index 3b221818dfffef2f3533ca7d242a7ce3b998b475..51c53678ae78790c518460f0996d637e5769a97e 100644
|
| --- a/third_party/WebKit/Source/core/dom/ScopedWindowFocusAllowedIndicator.h
|
| +++ b/third_party/WebKit/Source/core/dom/ScopedWindowFocusAllowedIndicator.h
|
| @@ -37,8 +37,8 @@ private:
|
|
|
| void dispose()
|
| {
|
| - if (executionContext())
|
| - executionContext()->consumeWindowInteraction();
|
| + if (getExecutionContext())
|
| + getExecutionContext()->consumeWindowInteraction();
|
| }
|
|
|
| DEFINE_INLINE_TRACE()
|
| @@ -50,7 +50,7 @@ private:
|
| // In Oilpan, destructors are not allowed to touch other on-heap objects.
|
| // The Observer indirection is needed to keep
|
| // ScopedWindowFocusAllowedIndicator off-heap and thus allows its destructor
|
| - // to call executionContext()->consumeWindowInteraction().
|
| + // to call getExecutionContext()->consumeWindowInteraction().
|
| OwnPtrWillBePersistent<Observer> m_observer;
|
| };
|
|
|
|
|