| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "content/public/browser/devtools_agent_host.h" | 5 #include "content/public/browser/devtools_agent_host.h" |
| 6 #include "content/public/browser/devtools_manager_delegate.h" | 6 #include "content/public/browser/devtools_manager_delegate.h" |
| 7 | 7 |
| 8 namespace content { | 8 namespace content { |
| 9 | 9 |
| 10 void DevToolsManagerDelegate::Inspect(DevToolsAgentHost* agent_host) { | 10 void DevToolsManagerDelegate::Inspect(DevToolsAgentHost* agent_host) { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 std::string DevToolsManagerDelegate::GetDiscoveryPageHTML() { | 42 std::string DevToolsManagerDelegate::GetDiscoveryPageHTML() { |
| 43 return std::string(); | 43 return std::string(); |
| 44 } | 44 } |
| 45 | 45 |
| 46 std::string DevToolsManagerDelegate::GetFrontendResource( | 46 std::string DevToolsManagerDelegate::GetFrontendResource( |
| 47 const std::string& path) { | 47 const std::string& path) { |
| 48 return std::string(); | 48 return std::string(); |
| 49 } | 49 } |
| 50 | 50 |
| 51 // Returns browser endpoint for remote debugging. |
| 52 std::string DevToolsManagerDelegate::GetBrowserTargetGUID() { |
| 53 return std::string(); |
| 54 } |
| 55 |
| 51 DevToolsManagerDelegate::~DevToolsManagerDelegate() { | 56 DevToolsManagerDelegate::~DevToolsManagerDelegate() { |
| 52 } | 57 } |
| 53 | 58 |
| 54 } // namespace content | 59 } // namespace content |
| OLD | NEW |