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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h

Issue 1728803002: Rename WorkerThread to WorkerScript Base URL: https://chromium.googlesource.com/chromium/src.git@workerscript-controller
Patch Set: Created 4 years, 10 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/inspector/WorkerThreadDebugger.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
index a8f70a83e29b00b542e44e853970aae234b1560b..5eb44dfac88dc3513f6af20a403947036d777497 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerThreadDebugger.h
@@ -35,12 +35,12 @@
namespace blink {
-class WorkerThread;
+class WorkerScript;
class WorkerThreadDebugger final : public ThreadDebugger {
kinuko 2016/02/24 12:54:51 Hmm.. should this be WorkerScriptDebugger?
WTF_MAKE_NONCOPYABLE(WorkerThreadDebugger);
public:
- explicit WorkerThreadDebugger(WorkerThread*);
+ explicit WorkerThreadDebugger(WorkerScript*);
~WorkerThreadDebugger() override;
static void setContextDebugData(v8::Local<v8::Context>);
@@ -52,7 +52,7 @@ public:
bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) override;
private:
- WorkerThread* m_workerThread;
+ WorkerScript* m_workerScript;
bool m_paused;
};

Powered by Google App Engine
This is Rietveld 408576698