| 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_WORKER_DEVTOOLS_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MANAGER_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MANAGER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/observer_list.h" |
| 13 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 14 | 15 |
| 15 namespace content { | 16 namespace content { |
| 16 | 17 |
| 17 class DevToolsAgentHost; | 18 class DevToolsAgentHost; |
| 18 class DevToolsAgentHostImpl; | 19 class DevToolsAgentHostImpl; |
| 19 class WorkerDevToolsAgentHost; | 20 class WorkerDevToolsAgentHost; |
| 20 | 21 |
| 21 // A base class of SharedWorkerDevToolsManager and ServiceWorkerDevToolsManager, | 22 // A base class of SharedWorkerDevToolsManager and ServiceWorkerDevToolsManager, |
| 22 // provides common default implementation for them. | 23 // provides common default implementation for them. |
| 23 // This class lives on UI thread. | 24 // This class lives on UI thread. |
| 24 class CONTENT_EXPORT WorkerDevToolsManager { | 25 class CONTENT_EXPORT WorkerDevToolsManager { |
| 25 public: | 26 public: |
| 26 typedef std::pair<int, int> WorkerId; | 27 typedef std::pair<int, int> WorkerId; |
| 27 | 28 |
| 29 class Observer { |
| 30 public: |
| 31 virtual void WorkerCreated(DevToolsAgentHost* host) {} |
| 32 virtual void WorkerDestroyed(DevToolsAgentHost* host) {} |
| 33 |
| 34 protected: |
| 35 virtual ~Observer() {} |
| 36 }; |
| 37 |
| 28 DevToolsAgentHostImpl* GetDevToolsAgentHostForWorker(int worker_process_id, | 38 DevToolsAgentHostImpl* GetDevToolsAgentHostForWorker(int worker_process_id, |
| 29 int worker_route_id); | 39 int worker_route_id); |
| 30 void AddAllAgentHosts(std::vector<scoped_refptr<DevToolsAgentHost>>* result); | 40 void AddAllAgentHosts(std::vector<scoped_refptr<DevToolsAgentHost>>* result); |
| 31 void WorkerReadyForInspection(int worker_process_id, int worker_route_id); | 41 void WorkerReadyForInspection(int worker_process_id, int worker_route_id); |
| 32 void WorkerDestroyed(int worker_process_id, int worker_route_id); | 42 void WorkerDestroyed(int worker_process_id, int worker_route_id); |
| 33 | 43 |
| 44 void AddObserver(Observer* observer); |
| 45 void RemoveObserver(Observer* observer); |
| 46 |
| 34 protected: | 47 protected: |
| 35 typedef std::map<WorkerId, WorkerDevToolsAgentHost*> AgentHostMap; | 48 using AgentHostMap = std::map<WorkerId, WorkerDevToolsAgentHost*>; |
| 36 friend class SharedWorkerDevToolsManagerTest; | 49 friend class SharedWorkerDevToolsManagerTest; |
| 37 | 50 |
| 38 WorkerDevToolsManager(); | 51 WorkerDevToolsManager(); |
| 39 virtual ~WorkerDevToolsManager(); | 52 virtual ~WorkerDevToolsManager(); |
| 40 void RemoveInspectedWorkerData(WorkerId id); | 53 void RemoveInspectedWorkerData(WorkerId id); |
| 54 void WorkerCreated(const WorkerId& id, |
| 55 WorkerDevToolsAgentHost* host); |
| 41 void WorkerRestarted(const WorkerId& id, const AgentHostMap::iterator& it); | 56 void WorkerRestarted(const WorkerId& id, const AgentHostMap::iterator& it); |
| 42 AgentHostMap& workers() { return workers_; } | 57 AgentHostMap& workers() { return workers_; } |
| 43 | 58 |
| 44 private: | 59 private: |
| 60 // Resets to its initial state as if newly created. |
| 61 void ResetForTesting(); |
| 62 |
| 63 ObserverList<Observer> observer_list_; |
| 45 AgentHostMap workers_; | 64 AgentHostMap workers_; |
| 46 DISALLOW_COPY_AND_ASSIGN(WorkerDevToolsManager); | 65 DISALLOW_COPY_AND_ASSIGN(WorkerDevToolsManager); |
| 47 }; | 66 }; |
| 48 | 67 |
| 49 } // namespace content | 68 } // namespace content |
| 50 | 69 |
| 51 #endif // CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MANAGER_H_ | 70 #endif // CONTENT_BROWSER_DEVTOOLS_WORKER_DEVTOOLS_MANAGER_H_ |
| OLD | NEW |