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

Side by Side Diff: content/browser/devtools/worker_devtools_manager.cc

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 years 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 unified diff | Download patch
OLDNEW
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/devtools/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/devtools/devtools_agent_host.h"
12 #include "content/browser/debugger/devtools_manager_impl.h" 12 #include "content/browser/devtools/devtools_manager_impl.h"
13 #include "content/browser/debugger/worker_devtools_message_filter.h" 13 #include "content/browser/devtools/worker_devtools_message_filter.h"
14 #include "content/browser/worker_host/worker_service_impl.h" 14 #include "content/browser/worker_host/worker_service_impl.h"
15 #include "content/common/devtools_messages.h" 15 #include "content/common/devtools_messages.h"
16 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
17 #include "content/public/browser/child_process_data.h" 17 #include "content/public/browser/child_process_data.h"
18 #include "content/public/browser/devtools_agent_host_registry.h" 18 #include "content/public/browser/devtools_agent_host_registry.h"
19 #include "content/public/common/process_type.h" 19 #include "content/public/common/process_type.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h " 21 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h "
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
23 23
24 namespace content { 24 namespace content {
25 25
26 // Called on the UI thread. 26 // Called on the UI thread.
27 // static 27 // static
28 DevToolsAgentHost* DevToolsAgentHostRegistry::GetDevToolsAgentHostForWorker( 28 DevToolsAgentHost* DevToolsAgentHostRegistry::GetDevToolsAgentHostForWorker(
29 int worker_process_id, 29 int worker_process_id,
30 int worker_route_id) { 30 int worker_route_id) {
31 return WorkerDevToolsManager::GetDevToolsAgentHostForWorker( 31 return WorkerDevToolsManager::GetDevToolsAgentHostForWorker(
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 host->WorkerDestroyed(); 463 host->WorkerDestroyed();
464 } 464 }
465 465
466 // static 466 // static
467 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) { 467 void WorkerDevToolsManager::SendResumeToWorker(const WorkerId& id) {
468 if (WorkerProcessHost* process = FindWorkerProcess(id.first)) 468 if (WorkerProcessHost* process = FindWorkerProcess(id.first))
469 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second)); 469 process->Send(new DevToolsAgentMsg_ResumeWorkerContext(id.second));
470 } 470 }
471 471
472 } // namespace content 472 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/worker_devtools_manager.h ('k') | content/browser/devtools/worker_devtools_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698