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

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

Issue 2514933003: DevTools: enable target domain handler on the browser target, make browser target non-discoverable.
Patch Set: rebaselined 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
« no previous file with comments | « content/public/browser/devtools_manager_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 30 matching lines...) Expand all
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
OLDNEW
« no previous file with comments | « content/public/browser/devtools_manager_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698