| Index: content/browser/devtools/worker_devtools_manager.h
|
| diff --git a/content/browser/devtools/worker_devtools_manager.h b/content/browser/devtools/worker_devtools_manager.h
|
| index 73916c30fe2bd12f8acdbc47d874b7b7a6a0bc36..a70f1784b5b5e4b7842758d99eaa7e45f4f77be5 100644
|
| --- a/content/browser/devtools/worker_devtools_manager.h
|
| +++ b/content/browser/devtools/worker_devtools_manager.h
|
| @@ -19,7 +19,6 @@
|
| class DevToolsAgentHost;
|
|
|
| // All methods are supposed to be called on the IO thread.
|
| -// This class is not used when "enable-embedded-shared-worker" flag is set.
|
| class WorkerDevToolsManager {
|
| public:
|
| typedef std::pair<int, int> WorkerId;
|
| @@ -42,8 +41,9 @@
|
|
|
| // Called on the IO thread.
|
| // Returns true when the worker must be paused on start.
|
| - bool WorkerCreated(WorkerProcessHost* process,
|
| - const WorkerProcessHost::WorkerInstance& instance);
|
| + bool WorkerCreated(
|
| + WorkerProcessHost* process,
|
| + const WorkerProcessHost::WorkerInstance& instance);
|
| void WorkerDestroyed(WorkerProcessHost* process, int worker_route_id);
|
| void WorkerContextStarted(WorkerProcessHost* process, int worker_route_id);
|
|
|
|
|