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

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

Issue 1679133002: [DevTools] Remove isRunRequired, replace autoConnectToWorkers with setWaitForDebuggerOnStart. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined tests 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/workers/WorkerInspectorProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
index a86a431b11feade1820efad9a32d926d41759808..34061f3b8d3536e289eb7ce265684e75f415ba00 100644
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
@@ -6,6 +6,7 @@
#define WorkerInspectorProxy_h
#include "core/CoreExport.h"
+#include "core/workers/WorkerThread.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebTaskRunner.h"
#include "wtf/Forward.h"
@@ -16,7 +17,6 @@ class ExecutionContext;
class KURL;
class WebTraceLocation;
class WorkerGlobalScopeProxy;
-class WorkerThread;
// A proxy for talking to the worker inspector on the worker thread.
// All of these methods should be called on the main thread.
@@ -36,6 +36,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
};
+ WorkerThreadStartMode workerStartMode(ExecutionContext*);
void workerThreadCreated(ExecutionContext*, WorkerThread*, const KURL&);
void workerThreadTerminated();

Powered by Google App Engine
This is Rietveld 408576698