Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_REGISTRY_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_REGISTRY_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "content/common/content_export.h" | |
| 10 | |
| 11 class RenderViewHost; | |
| 12 class TabContents; | |
| 13 | |
| 14 namespace content { | |
| 15 | |
| 16 class DevToolsAgentHost; | |
| 17 | |
| 18 class CONTENT_EXPORT DevToolsAgentHostRegistry { | |
| 19 public: | |
| 20 | |
|
jam
2011/11/21 21:16:04
nit: unnecessary blank line
yurys
2011/11/30 15:49:43
Done.
| |
| 21 // Returns DevToolsAgentHost that can be used for inspecting |rvh|. | |
| 22 // New DevToolsAgentHost will be created if it does not exist. | |
| 23 static DevToolsAgentHost* GetDevToolsAgentHost(RenderViewHost* rvh); | |
| 24 | |
| 25 // Returns true iff an instance of DevToolsAgentHost for the |rvh| | |
| 26 // does exist. | |
| 27 static bool HasDevToolsAgentHost(RenderViewHost* rvh); | |
| 28 | |
| 29 // Returns DevToolsAgentHost that can be used for inspecting shared worker | |
| 30 // with given worker process host id and routing id. | |
| 31 static DevToolsAgentHost* GetDevToolsAgentHostForWorker( | |
| 32 int worker_process_id, | |
| 33 int worker_route_id); | |
| 34 | |
| 35 static bool IsDebuggerAttached(TabContents*); | |
|
jam
2011/11/21 21:16:04
nit: chrome style is to name parameters in the hea
yurys
2011/11/30 15:49:43
Done.
| |
| 36 }; | |
| 37 | |
| 38 } // namespace content | |
| 39 | |
| 40 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_REGISTRY_H_ | |
| OLD | NEW |