| 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_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ |
| 7 | 7 |
| 8 #include "content/browser/devtools/embedded_worker_devtools_manager.h" | 8 #include "content/browser/devtools/embedded_worker_devtools_manager.h" |
| 9 #include "content/browser/devtools/ipc_devtools_agent_host.h" | 9 #include "content/browser/devtools/ipc_devtools_agent_host.h" |
| 10 #include "ipc/ipc_listener.h" | 10 #include "ipc/ipc_listener.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ServiceWorkerIdentifier; | 21 ServiceWorkerIdentifier; |
| 22 | 22 |
| 23 EmbeddedWorkerDevToolsAgentHost(WorkerId worker_id, | 23 EmbeddedWorkerDevToolsAgentHost(WorkerId worker_id, |
| 24 const SharedWorkerInstance& shared_worker); | 24 const SharedWorkerInstance& shared_worker); |
| 25 | 25 |
| 26 EmbeddedWorkerDevToolsAgentHost(WorkerId worker_id, | 26 EmbeddedWorkerDevToolsAgentHost(WorkerId worker_id, |
| 27 const ServiceWorkerIdentifier& service_worker, | 27 const ServiceWorkerIdentifier& service_worker, |
| 28 bool debug_service_worker_on_start); | 28 bool debug_service_worker_on_start); |
| 29 | 29 |
| 30 // DevToolsAgentHost override. | 30 // DevToolsAgentHost override. |
| 31 virtual bool IsWorker() const OVERRIDE; | 31 virtual bool IsWorker() const override; |
| 32 virtual Type GetType() OVERRIDE; | 32 virtual Type GetType() override; |
| 33 virtual std::string GetTitle() OVERRIDE; | 33 virtual std::string GetTitle() override; |
| 34 virtual GURL GetURL() OVERRIDE; | 34 virtual GURL GetURL() override; |
| 35 virtual bool Activate() OVERRIDE; | 35 virtual bool Activate() override; |
| 36 virtual bool Close() OVERRIDE; | 36 virtual bool Close() override; |
| 37 | 37 |
| 38 // IPCDevToolsAgentHost implementation. | 38 // IPCDevToolsAgentHost implementation. |
| 39 virtual void SendMessageToAgent(IPC::Message* message) OVERRIDE; | 39 virtual void SendMessageToAgent(IPC::Message* message) override; |
| 40 virtual void Attach() OVERRIDE; | 40 virtual void Attach() override; |
| 41 virtual void OnClientAttached() OVERRIDE {} | 41 virtual void OnClientAttached() override {} |
| 42 virtual void OnClientDetached() OVERRIDE; | 42 virtual void OnClientDetached() override; |
| 43 | 43 |
| 44 // IPC::Listener implementation. | 44 // IPC::Listener implementation. |
| 45 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 45 virtual bool OnMessageReceived(const IPC::Message& msg) override; |
| 46 | 46 |
| 47 void WorkerReadyForInspection(); | 47 void WorkerReadyForInspection(); |
| 48 void WorkerContextStarted(); | 48 void WorkerContextStarted(); |
| 49 void WorkerRestarted(WorkerId worker_id); | 49 void WorkerRestarted(WorkerId worker_id); |
| 50 void WorkerDestroyed(); | 50 void WorkerDestroyed(); |
| 51 bool Matches(const SharedWorkerInstance& other); | 51 bool Matches(const SharedWorkerInstance& other); |
| 52 bool Matches(const ServiceWorkerIdentifier& other); | 52 bool Matches(const ServiceWorkerIdentifier& other); |
| 53 bool IsTerminated(); | 53 bool IsTerminated(); |
| 54 | 54 |
| 55 private: | 55 private: |
| (...skipping 19 matching lines...) Expand all Loading... |
| 75 scoped_ptr<ServiceWorkerIdentifier> service_worker_; | 75 scoped_ptr<ServiceWorkerIdentifier> service_worker_; |
| 76 WorkerState state_; | 76 WorkerState state_; |
| 77 WorkerId worker_id_; | 77 WorkerId worker_id_; |
| 78 std::string saved_agent_state_; | 78 std::string saved_agent_state_; |
| 79 DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerDevToolsAgentHost); | 79 DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerDevToolsAgentHost); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace content | 82 } // namespace content |
| 83 | 83 |
| 84 #endif // CONTENT_BROWSER_DEVTOOLS_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ | 84 #endif // CONTENT_BROWSER_DEVTOOLS_EMBEDDED_WORKER_DEVTOOLS_AGENT_HOST_H_ |
| OLD | NEW |