OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
7 | 7 |
8 #include "content/browser/devtools/devtools_agent_host_impl.h" | 8 #include "content/browser/devtools/devtools_agent_host_impl.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 21 matching lines...) Expand all Loading... |
32 void Detach() override; | 32 void Detach() override; |
33 | 33 |
34 // DevToolsAgentHost implementation. | 34 // DevToolsAgentHost implementation. |
35 Type GetType() override; | 35 Type GetType() override; |
36 std::string GetTitle() override; | 36 std::string GetTitle() override; |
37 GURL GetURL() override; | 37 GURL GetURL() override; |
38 bool Activate() override; | 38 bool Activate() override; |
39 bool Close() override; | 39 bool Close() override; |
40 bool DispatchProtocolMessage(const std::string& message) override; | 40 bool DispatchProtocolMessage(const std::string& message) override; |
41 | 41 |
42 scoped_ptr<devtools::io::IOHandler> io_handler_; | 42 std::unique_ptr<devtools::io::IOHandler> io_handler_; |
43 scoped_ptr<devtools::memory::MemoryHandler> memory_handler_; | 43 std::unique_ptr<devtools::memory::MemoryHandler> memory_handler_; |
44 scoped_ptr<devtools::system_info::SystemInfoHandler> system_info_handler_; | 44 std::unique_ptr<devtools::system_info::SystemInfoHandler> |
45 scoped_ptr<devtools::tethering::TetheringHandler> tethering_handler_; | 45 system_info_handler_; |
46 scoped_ptr<devtools::tracing::TracingHandler> tracing_handler_; | 46 std::unique_ptr<devtools::tethering::TetheringHandler> tethering_handler_; |
47 scoped_ptr<DevToolsProtocolHandler> protocol_handler_; | 47 std::unique_ptr<devtools::tracing::TracingHandler> tracing_handler_; |
| 48 std::unique_ptr<DevToolsProtocolHandler> protocol_handler_; |
48 }; | 49 }; |
49 | 50 |
50 } // namespace content | 51 } // namespace content |
51 | 52 |
52 #endif // CONTENT_BROWSER_DEVTOOLS_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 53 #endif // CONTENT_BROWSER_DEVTOOLS_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
OLD | NEW |