OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | |
11 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "base/macros.h" |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 #include "content/public/browser/devtools_agent_host.h" | 13 #include "content/public/browser/devtools_agent_host.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 class DevToolsAgentHostImpl; | 17 class DevToolsAgentHostImpl; |
18 class SharedWorkerDevToolsAgentHost; | 18 class SharedWorkerDevToolsAgentHost; |
19 class SharedWorkerInstance; | 19 class SharedWorkerInstance; |
20 | 20 |
21 // Manages WorkerDevToolsAgentHost's for Shared Workers. | 21 // Manages WorkerDevToolsAgentHost's for Shared Workers. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // Resets to its initial state as if newly created. | 59 // Resets to its initial state as if newly created. |
60 void ResetForTesting(); | 60 void ResetForTesting(); |
61 | 61 |
62 AgentHostMap workers_; | 62 AgentHostMap workers_; |
63 DISALLOW_COPY_AND_ASSIGN(SharedWorkerDevToolsManager); | 63 DISALLOW_COPY_AND_ASSIGN(SharedWorkerDevToolsManager); |
64 }; | 64 }; |
65 | 65 |
66 } // namespace content | 66 } // namespace content |
67 | 67 |
68 #endif // CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ | 68 #endif // CONTENT_BROWSER_DEVTOOLS_SHARED_WORKER_DEVTOOLS_MANAGER_H_ |
OLD | NEW |