| Index: third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| index 78856bc64e0419c1e5b711fab20dd003487ab719..da01008226bb0affbb6edec98420fdffada93c62 100644
|
| --- a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| @@ -43,6 +43,7 @@
|
|
|
| namespace blink {
|
|
|
| +class LoadingContext;
|
| class ParentFrameTaskRunners;
|
| class ServiceWorkerGlobalScopeProxy;
|
| class WebLocalFrameImpl;
|
| @@ -106,7 +107,7 @@ class WebEmbeddedWorkerImpl final : public WebEmbeddedWorker,
|
| void postTaskToWorkerGlobalScope(
|
| const WebTraceLocation&,
|
| std::unique_ptr<WTF::CrossThreadClosure>) override;
|
| - ExecutionContext* getLoaderExecutionContext() override;
|
| + LoadingContext* getLoadingContext() override;
|
|
|
| WebEmbeddedWorkerStartData m_workerStartData;
|
|
|
| @@ -139,6 +140,7 @@ class WebEmbeddedWorkerImpl final : public WebEmbeddedWorker,
|
| WebView* m_webView;
|
|
|
| Persistent<WebLocalFrameImpl> m_mainFrame;
|
| + Persistent<LoadingContext> m_loadingContext;
|
|
|
| bool m_loadingShadowPage;
|
| bool m_askedToTerminate;
|
|
|