| Index: third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperty.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperty.h b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperty.h
|
| index 73d270edd49ec31700d4f66a3dd4ab210ecd7a22..61679bc0ffeedf9cf7d840eac24cf9b674dac549 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperty.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperty.h
|
| @@ -96,7 +96,7 @@ void ScriptPromiseProperty<HolderType, ResolvedType, RejectedType>::resolve(Pass
|
| ASSERT_NOT_REACHED();
|
| return;
|
| }
|
| - if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
|
| + if (!getExecutionContext() || getExecutionContext()->activeDOMObjectsAreStopped())
|
| return;
|
| m_resolved = value;
|
| resolveOrReject(Resolved);
|
| @@ -110,7 +110,7 @@ void ScriptPromiseProperty<HolderType, ResolvedType, RejectedType>::reject(PassR
|
| ASSERT_NOT_REACHED();
|
| return;
|
| }
|
| - if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
|
| + if (!getExecutionContext() || getExecutionContext()->activeDOMObjectsAreStopped())
|
| return;
|
| m_rejected = value;
|
| resolveOrReject(Rejected);
|
|
|