| 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 {
|
| @@ -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;
|
|
|