Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h

Issue 2337253005: Worker: Canonicalize names of WorkerThread lifecycle events in WorkerReportingProxy (Closed)
Patch Set: fix comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
index 3950307d99c09605870ce856fd23665eab0be891..b122f3dab424ff1b3844c6de52bf77f8e4a3ec07 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
@@ -74,11 +74,11 @@ public:
void reportException(const String& errorMessage, std::unique_ptr<SourceLocation>, int exceptionId) override;
void reportConsoleMessage(MessageSource, MessageLevel, const String& message, SourceLocation*) override;
void postMessageToPageInspector(const String&) override;
+ void didCreateWorkerGlobalScope(WorkerOrWorkletGlobalScope*) override;
void didEvaluateWorkerScript(bool success) override;
- void workerGlobalScopeStarted(WorkerOrWorkletGlobalScope*) override;
- void workerGlobalScopeClosed() override;
- void workerThreadTerminated() override;
+ void didCloseWorkerGlobalScope() override;
void willDestroyWorkerGlobalScope() override;
+ void didTerminateWorkerThread() override;
protected:
InProcessWorkerObjectProxy(InProcessWorkerMessagingProxy*);

Powered by Google App Engine
This is Rietveld 408576698