| Index: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
|
| index 1810ccd81a6e6216775931397a672bdad5c50cc6..f89ba0a6c3c99ce701cd9781545e6757671fbdf8 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
|
| @@ -29,7 +29,7 @@
|
|
|
| #include "core/CoreExport.h"
|
| #include "core/dom/ExecutionContext.h"
|
| -#include "core/workers/WorkerGlobalScopeProxy.h"
|
| +#include "core/workers/InProcessWorkerGlobalScopeProxy.h"
|
| #include "core/workers/WorkerLoaderProxy.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -48,11 +48,11 @@ class WorkerClients;
|
| class WorkerInspectorProxy;
|
|
|
| class CORE_EXPORT WorkerMessagingProxy
|
| - : public WorkerGlobalScopeProxy
|
| + : public InProcessWorkerGlobalScopeProxy
|
| , private WorkerLoaderProxyProvider {
|
| WTF_MAKE_NONCOPYABLE(WorkerMessagingProxy);
|
| public:
|
| - // Implementations of WorkerGlobalScopeProxy.
|
| + // Implementations of InProcessWorkerGlobalScopeProxy.
|
| // (Only use these methods in the worker object thread.)
|
| void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode) override;
|
| void terminateWorkerGlobalScope() override;
|
|
|