Chromium Code Reviews| Index: third_party/WebKit/Source/core/workers/WorkerReportingProxy.h |
| diff --git a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h |
| index 5d1f77a2f4d4f317e456ea148410eeab865750ea..ce7dcf70f509731d86070a6d4719c37d434fcbfa 100644 |
| --- a/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h |
| +++ b/third_party/WebKit/Source/core/workers/WorkerReportingProxy.h |
| @@ -40,7 +40,7 @@ namespace blink { |
| class ConsoleMessage; |
| class SourceLocation; |
| -class WorkerGlobalScope; |
| +class WorkerOrWorkletGlobalScope; |
| // APIs used by workers to report console and worker activity. |
| class CORE_EXPORT WorkerReportingProxy { |
|
yhirano
2016/07/22 06:23:40
Should this class and functions be renamed to Work
ikilpatrick
2016/07/22 18:21:59
I was going to follow up with a rename patch(es) f
|
| @@ -59,7 +59,7 @@ public: |
| virtual void didInitializeWorkerContext() { } |
| // Invoked when the new WorkerGlobalScope is started. |
| - virtual void workerGlobalScopeStarted(WorkerGlobalScope*) = 0; |
| + virtual void workerGlobalScopeStarted(WorkerOrWorkletGlobalScope*) = 0; |
| // Invoked when close() is invoked on the worker context. |
| virtual void workerGlobalScopeClosed() = 0; |