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

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

Issue 1898363003: Worker: Strictly check the current running thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 6271a84369e4017fc1af09a622c6f6f6f09e6353..df85c340290e5eb54b9e664e16f09c4f84260e38 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
@@ -46,9 +46,9 @@ class ExecutionContextTask;
class InProcessWorkerMessagingProxy;
// A proxy to talk to the worker object. This object is created on the
-// worker object thread (i.e. usually the main thread), passed on to
+// parent context thread (i.e. usually the main thread), passed on to
// the worker thread, and used just to proxy messages to the
-// InProcessWorkerMessagingProxy on the worker object thread.
+// InProcessWorkerMessagingProxy on the parent context thread.
//
// Used only by in-process workers (DedicatedWorker and CompositorWorker.)
class CORE_EXPORT InProcessWorkerObjectProxy : public WorkerReportingProxy {

Powered by Google App Engine
This is Rietveld 408576698