| Index: third_party/WebKit/Source/core/workers/Worker.h
|
| diff --git a/third_party/WebKit/Source/core/workers/Worker.h b/third_party/WebKit/Source/core/workers/Worker.h
|
| index 2dbf303bd4c0b4b947cf868b7053bef2e51bba54..f593886c8e085232fa0977e60117d19dc5269c03 100644
|
| --- a/third_party/WebKit/Source/core/workers/Worker.h
|
| +++ b/third_party/WebKit/Source/core/workers/Worker.h
|
| @@ -11,7 +11,7 @@ namespace blink {
|
|
|
| class ExceptionState;
|
| class ExecutionContext;
|
| -class WorkerGlobalScopeProxy;
|
| +class InProcessWorkerGlobalScopeProxy;
|
|
|
| class CORE_EXPORT Worker final : public InProcessWorkerBase {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -22,7 +22,7 @@ public:
|
| protected:
|
| explicit Worker(ExecutionContext*);
|
|
|
| - WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(ExecutionContext*) override;
|
| + InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) override;
|
| const AtomicString& interfaceName() const override;
|
| };
|
|
|
|
|