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

Side by Side Diff: content/public/browser/devtools_manager_delegate.cc

Issue 2708563002: DevTools: allow embedder handling async remote debugger commands. (Closed)
Patch Set: extract variable Created 3 years, 10 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 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 21 matching lines...) Expand all
32 const GURL& url) { 32 const GURL& url) {
33 return nullptr; 33 return nullptr;
34 } 34 }
35 35
36 base::DictionaryValue* DevToolsManagerDelegate::HandleCommand( 36 base::DictionaryValue* DevToolsManagerDelegate::HandleCommand(
37 DevToolsAgentHost* agent_host, 37 DevToolsAgentHost* agent_host,
38 base::DictionaryValue* command) { 38 base::DictionaryValue* command) {
39 return nullptr; 39 return nullptr;
40 } 40 }
41 41
42 bool DevToolsManagerDelegate::HandleAsyncCommand(DevToolsAgentHost* agent_host,
43 base::DictionaryValue* command,
44 CommandCallback callback) {
45 return false;
46 }
47
42 std::string DevToolsManagerDelegate::GetDiscoveryPageHTML() { 48 std::string DevToolsManagerDelegate::GetDiscoveryPageHTML() {
43 return std::string(); 49 return std::string();
44 } 50 }
45 51
46 std::string DevToolsManagerDelegate::GetFrontendResource( 52 std::string DevToolsManagerDelegate::GetFrontendResource(
47 const std::string& path) { 53 const std::string& path) {
48 return std::string(); 54 return std::string();
49 } 55 }
50 56
51 DevToolsManagerDelegate::~DevToolsManagerDelegate() { 57 DevToolsManagerDelegate::~DevToolsManagerDelegate() {
52 } 58 }
53 59
54 } // namespace content 60 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/devtools_manager_delegate.h ('k') | third_party/WebKit/Source/core/inspector/browser_protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698