| Index: third_party/WebKit/Source/core/dom/ExecutionContext.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.h b/third_party/WebKit/Source/core/dom/ExecutionContext.h
|
| index a972da5e6203a8df0dbe4b4c44c32c6d30919ab9..c56d1934af16c75e8f4c4b5bb8fbb904e606a559 100644
|
| --- a/third_party/WebKit/Source/core/dom/ExecutionContext.h
|
| +++ b/third_party/WebKit/Source/core/dom/ExecutionContext.h
|
| @@ -144,9 +144,7 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
|
| bool activeDOMObjectsAreSuspended() const {
|
| return m_activeDOMObjectsAreSuspended;
|
| }
|
| - bool activeDOMObjectsAreStopped() const {
|
| - return m_activeDOMObjectsAreStopped;
|
| - }
|
| + bool isContextDestroyed() const { return m_isContextDestroyed; }
|
|
|
| // Called after the construction of an ActiveDOMObject to synchronize suspend
|
| // state.
|
| @@ -202,7 +200,7 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
|
| HeapVector<Member<ErrorEvent>> m_pendingExceptions;
|
|
|
| bool m_activeDOMObjectsAreSuspended;
|
| - bool m_activeDOMObjectsAreStopped;
|
| + bool m_isContextDestroyed;
|
|
|
| Member<PublicURLManager> m_publicURLManager;
|
|
|
|
|