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 #include "chromecast/browser/devtools/cast_dev_tools_delegate.h" | 5 #include "chromecast/browser/devtools/cast_dev_tools_delegate.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "grit/shell_resources.h" | 9 #include "grit/shell_resources.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 return ResourceBundle::GetSharedInstance().GetRawDataResource( | 27 return ResourceBundle::GetSharedInstance().GetRawDataResource( |
28 IDR_CAST_SHELL_DEVTOOLS_DISCOVERY_PAGE).as_string(); | 28 IDR_CAST_SHELL_DEVTOOLS_DISCOVERY_PAGE).as_string(); |
29 #endif // defined(OS_ANDROID) | 29 #endif // defined(OS_ANDROID) |
30 } | 30 } |
31 | 31 |
32 std::string CastDevToolsDelegate::GetFrontendResource( | 32 std::string CastDevToolsDelegate::GetFrontendResource( |
33 const std::string& path) { | 33 const std::string& path) { |
34 return std::string(); | 34 return std::string(); |
35 } | 35 } |
36 | 36 |
37 std::string CastDevToolsDelegate::GetPageThumbnailData(const GURL& url) { | |
38 return std::string(); | |
39 } | |
40 | |
41 content::DevToolsExternalAgentProxyDelegate* | |
42 CastDevToolsDelegate::HandleWebSocketConnection(const std::string& path) { | |
43 return nullptr; | |
44 } | |
45 | |
46 } // namespace shell | 37 } // namespace shell |
47 } // namespace chromecast | 38 } // namespace chromecast |
OLD | NEW |