| Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
|
| index 96e29ada7df5be8089ec270738e7d20c1ea19ee9..a7dc13ad2e3aceb539ee28fa3ff7e9e4e54ebda1 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
|
| @@ -22,7 +22,7 @@ namespace blink {
|
|
|
| class ExceptionState;
|
| class ExecutionContext;
|
| -class WorkerGlobalScopeProxy;
|
| +class InProcessWorkerGlobalScopeProxy;
|
| class WorkerScriptLoader;
|
|
|
| // Base class for workers that operate in the same process as the document that
|
| @@ -52,7 +52,7 @@ protected:
|
|
|
| // Creates a proxy to allow communicating with the worker's global scope. InProcessWorkerBase does not take ownership of the
|
| // created proxy. The proxy is expected to manage its own lifetime, and delete itself in response to terminateWorkerGlobalScope().
|
| - virtual WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(ExecutionContext*) = 0;
|
| + virtual InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) = 0;
|
|
|
| private:
|
| // Callbacks for m_scriptLoader.
|
| @@ -61,7 +61,7 @@ private:
|
|
|
| RefPtr<WorkerScriptLoader> m_scriptLoader;
|
| Member<ContentSecurityPolicy> m_contentSecurityPolicy;
|
| - WorkerGlobalScopeProxy* m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
|
| + InProcessWorkerGlobalScopeProxy* m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
|
| };
|
|
|
| } // namespace blink
|
|
|