Chromium Code Reviews| 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..68d8e7da49b14072e3ebf319f938d401cea55a59 100644 |
| --- a/third_party/WebKit/Source/core/workers/Worker.h |
| +++ b/third_party/WebKit/Source/core/workers/Worker.h |
| @@ -11,7 +11,6 @@ namespace blink { |
| class ExceptionState; |
| class ExecutionContext; |
|
yhirano
2016/04/19 04:50:28
+class InProcessWorkerGlobalScopeProxy;
nhiroki
2016/04/19 06:15:05
Done.
|
| -class WorkerGlobalScopeProxy; |
| class CORE_EXPORT Worker final : public InProcessWorkerBase { |
| DEFINE_WRAPPERTYPEINFO(); |
| @@ -22,7 +21,7 @@ public: |
| protected: |
| explicit Worker(ExecutionContext*); |
| - WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(ExecutionContext*) override; |
| + InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) override; |
| const AtomicString& interfaceName() const override; |
| }; |