Index: third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp |
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp |
index 241a90ab0c8c8e3b7be3721567bb5c525ceccb45..ee05de9f98a4ff2163e3e94035ce288ee8eab04c 100644 |
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp |
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionCallbacks.cpp |
@@ -25,14 +25,14 @@ void PresentationConnectionCallbacks::onSuccess(WebPassOwnPtr<WebPresentationCon |
{ |
OwnPtr<WebPresentationConnectionClient> result(PresentationConnectionClient.release()); |
- if (!m_resolver->executionContext() || m_resolver->executionContext()->activeDOMObjectsAreStopped()) |
+ if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()->activeDOMObjectsAreStopped()) |
return; |
m_resolver->resolve(PresentationConnection::take(m_resolver.get(), result.release(), m_request)); |
} |
void PresentationConnectionCallbacks::onError(const WebPresentationError& error) |
{ |
- if (!m_resolver->executionContext() || m_resolver->executionContext()->activeDOMObjectsAreStopped()) |
+ if (!m_resolver->getExecutionContext() || m_resolver->getExecutionContext()->activeDOMObjectsAreStopped()) |
return; |
m_resolver->reject(PresentationError::take(m_resolver.get(), error)); |
} |