| Index: third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| index bafadfdc4ff0a913b7a421435cadb349c4d29bbf..a8cf51e87efcf5fc631dcaef95f3aba26f2ddf7c 100644
|
| --- a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| @@ -49,7 +49,7 @@ ExecutionContext::ExecutionContext()
|
| : m_circularSequentialID(0),
|
| m_inDispatchErrorEvent(false),
|
| m_activeDOMObjectsAreSuspended(false),
|
| - m_activeDOMObjectsAreStopped(false),
|
| + m_isContextDestroyed(false),
|
| m_windowInteractionTokens(0),
|
| m_referrerPolicy(ReferrerPolicyDefault) {}
|
|
|
| @@ -68,7 +68,7 @@ void ExecutionContext::resumeActiveDOMObjects() {
|
| }
|
|
|
| void ExecutionContext::notifyContextDestroyed() {
|
| - m_activeDOMObjectsAreStopped = true;
|
| + m_isContextDestroyed = true;
|
| ContextLifecycleNotifier::notifyContextDestroyed();
|
| }
|
|
|
|
|