| 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.h" | 12 #include "content/browser/debugger/devtools_manager.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" | 14 #include "content/browser/worker_host/worker_process_host.h" |
| 15 #include "content/browser/worker_host/worker_service.h" | 15 #include "content/browser/worker_host/worker_service.h" |
| 16 #include "content/common/devtools_messages.h" | 16 #include "content/common/devtools_messages.h" |
| 17 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
| 18 #include "content/public/browser/devtools/devtools_agent_host_registry.h" |
| 18 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
| 20 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
| 21 #include "content/public/browser/notification_types.h" | 22 #include "content/public/browser/notification_types.h" |
| 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" |
| 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" |
| 25 | 26 |
| 26 using content::BrowserThread; | 27 using content::BrowserThread; |
| 27 | 28 |
| 29 namespace content { |
| 30 |
| 31 // Called on the UI thread. |
| 32 // static |
| 33 DevToolsAgentHost* DevToolsAgentHostRegistry::GetDevToolsAgentHostForWorker( |
| 34 int worker_process_id, |
| 35 int worker_route_id) { |
| 36 return WorkerDevToolsManager::GetDevToolsAgentHostForWorker( |
| 37 worker_process_id, |
| 38 worker_route_id); |
| 39 } |
| 40 |
| 41 } // namespace |
| 42 |
| 28 class WorkerDevToolsManager::AgentHosts | 43 class WorkerDevToolsManager::AgentHosts |
| 29 : private content::NotificationObserver { | 44 : private content::NotificationObserver { |
| 30 public: | 45 public: |
| 31 static void Add(WorkerId id, WorkerDevToolsAgentHost* host) { | 46 static void Add(WorkerId id, WorkerDevToolsAgentHost* host) { |
| 32 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 47 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 33 if (!instance_) | 48 if (!instance_) |
| 34 instance_ = new AgentHosts(); | 49 instance_ = new AgentHosts(); |
| 35 instance_->map_[id] = host; | 50 instance_->map_[id] = host; |
| 36 } | 51 } |
| 37 static void Remove(WorkerId id) { | 52 static void Remove(WorkerId id) { |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 if (host) | 488 if (host) |
| 474 host->WorkerDestroyed(); | 489 host->WorkerDestroyed(); |
| 475 } | 490 } |
| 476 | 491 |
| 477 // static | 492 // static |
| 478 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) { | 493 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) { |
| 479 if (WorkerProcessHost* process = FindWorkerProcess(id.first)) | 494 if (WorkerProcessHost* process = FindWorkerProcess(id.first)) |
| 480 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second)); | 495 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second)); |
| 481 } | 496 } |
| 482 | 497 |
| OLD | NEW |