| 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 ea14f9233ef390a65e86aa706ad9e86c32849ae5..3f59997d009730454f61bf163b6632a8b098502e 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 {
|
| @@ -60,7 +60,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;
|
|
|