| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/debugger/worker_devtools_manager.h" | 5 #include "content/browser/debugger/worker_devtools_manager.h" |
| 6 | 6 |
| 7 #include <list> | 7 #include <list> |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "content/browser/debugger/devtools_agent_host.h" | 11 #include "content/browser/debugger/devtools_agent_host.h" |
| 12 #include "content/browser/debugger/devtools_manager_impl.h" | 12 #include "content/browser/debugger/devtools_manager_impl.h" |
| 13 #include "content/browser/debugger/worker_devtools_message_filter.h" | 13 #include "content/browser/debugger/worker_devtools_message_filter.h" |
| 14 #include "content/browser/worker_host/worker_process_host.h" | |
| 15 #include "content/browser/worker_host/worker_service_impl.h" | 14 #include "content/browser/worker_host/worker_service_impl.h" |
| 16 #include "content/common/devtools_messages.h" | 15 #include "content/common/devtools_messages.h" |
| 17 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
| 18 #include "content/public/browser/child_process_data.h" | 17 #include "content/public/browser/child_process_data.h" |
| 19 #include "content/public/browser/devtools_agent_host_registry.h" | 18 #include "content/public/browser/devtools_agent_host_registry.h" |
| 20 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
| 21 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
| 22 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
| 23 #include "content/public/browser/notification_types.h" | 22 #include "content/public/browser/notification_types.h" |
| 24 #include "content/public/common/process_type.h" | 23 #include "content/public/common/process_type.h" |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 int worker_process_id, | 270 int worker_process_id, |
| 272 int worker_route_id) { | 271 int worker_route_id) { |
| 273 WorkerId id(worker_process_id, worker_route_id); | 272 WorkerId id(worker_process_id, worker_route_id); |
| 274 WorkerDevToolsAgentHost* result = AgentHosts::GetAgentHost(id); | 273 WorkerDevToolsAgentHost* result = AgentHosts::GetAgentHost(id); |
| 275 if (!result) | 274 if (!result) |
| 276 result = new WorkerDevToolsAgentHost(id); | 275 result = new WorkerDevToolsAgentHost(id); |
| 277 return result; | 276 return result; |
| 278 } | 277 } |
| 279 | 278 |
| 280 WorkerDevToolsManager::WorkerDevToolsManager() { | 279 WorkerDevToolsManager::WorkerDevToolsManager() { |
| 281 WorkerServiceImpl::GetInstance()->AddObserver(this); | |
| 282 } | 280 } |
| 283 | 281 |
| 284 WorkerDevToolsManager::~WorkerDevToolsManager() { | 282 WorkerDevToolsManager::~WorkerDevToolsManager() { |
| 285 } | 283 } |
| 286 | 284 |
| 287 void WorkerDevToolsManager::WorkerCreated( | 285 void WorkerDevToolsManager::WorkerCreated( |
| 288 WorkerProcessHost* worker, | 286 WorkerProcessHost* worker, |
| 289 const WorkerProcessHost::WorkerInstance& instance) { | 287 const WorkerProcessHost::WorkerInstance& instance) { |
| 290 for (TerminatedInspectedWorkers::iterator it = terminated_workers_.begin(); | 288 for (TerminatedInspectedWorkers::iterator it = terminated_workers_.begin(); |
| 291 it != terminated_workers_.end(); ++it) { | 289 it != terminated_workers_.end(); ++it) { |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 host->WorkerDestroyed(); | 487 host->WorkerDestroyed(); |
| 490 } | 488 } |
| 491 | 489 |
| 492 // static | 490 // static |
| 493 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) { | 491 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) { |
| 494 if (WorkerProcessHost* process = FindWorkerProcess(id.first)) | 492 if (WorkerProcessHost* process = FindWorkerProcess(id.first)) |
| 495 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second)); | 493 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second)); |
| 496 } | 494 } |
| 497 | 495 |
| 498 } // namespace | 496 } // namespace |
| OLD | NEW |