Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1301)

Side by Side Diff: chromecast/browser/devtools/cast_dev_tools_delegate.cc

Issue 2295623002: DevTools: simplify http handler delegate as it is moving into content. (Closed)
Patch Set: lcean Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromecast/browser/devtools/cast_dev_tools_delegate.h ('k') | chromecast/browser/devtools/remote_debugging_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698