| 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_FORWARDING_AGENT_HOST_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 // DevToolsAgentHost implementation | 39 // DevToolsAgentHost implementation |
| 40 std::string GetType() override; | 40 std::string GetType() override; |
| 41 std::string GetTitle() override; | 41 std::string GetTitle() override; |
| 42 GURL GetURL() override; | 42 GURL GetURL() override; |
| 43 GURL GetFaviconURL() override; | 43 GURL GetFaviconURL() override; |
| 44 std::string GetFrontendURL() override; | 44 std::string GetFrontendURL() override; |
| 45 bool Activate() override; | 45 bool Activate() override; |
| 46 void Reload() override; | 46 void Reload() override; |
| 47 bool Close() override; | 47 bool Close() override; |
| 48 base::TimeTicks GetLastActivityTime() override; |
| 48 | 49 |
| 49 std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_; | 50 std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_; |
| 50 std::string type_; | 51 std::string type_; |
| 51 std::string title_; | 52 std::string title_; |
| 52 GURL url_; | 53 GURL url_; |
| 53 }; | 54 }; |
| 54 | 55 |
| 55 } // namespace content | 56 } // namespace content |
| 56 | 57 |
| 57 #endif // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ | 58 #endif // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ |
| OLD | NEW |