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

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

Issue 2397713003: [DevTools] Fix a couple of issues for cross-site RFDTAH, add a test. (Closed)
Patch Set: test fix Created 4 years, 2 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/browser/devtools/site_per_process_devtools_browsertest.cc ('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) {
11 } 11 }
12 12
13 void DevToolsManagerDelegate::DevToolsAgentStateChanged( 13 void DevToolsManagerDelegate::DevToolsAgentStateChanged(
14 DevToolsAgentHost* agent_host, bool attached) { 14 DevToolsAgentHost* agent_host, bool attached) {
15 } 15 }
16 16
17 std::string DevToolsManagerDelegate::GetTargetType(RenderFrameHost* host) { 17 std::string DevToolsManagerDelegate::GetTargetType(RenderFrameHost* host) {
18 return DevToolsAgentHost::kTypePage; 18 return std::string();
19 } 19 }
20 20
21 std::string DevToolsManagerDelegate::GetTargetTitle(RenderFrameHost* host) { 21 std::string DevToolsManagerDelegate::GetTargetTitle(RenderFrameHost* host) {
22 return std::string(); 22 return std::string();
23 } 23 }
24 24
25 std::string DevToolsManagerDelegate::GetTargetDescription( 25 std::string DevToolsManagerDelegate::GetTargetDescription(
26 RenderFrameHost* host) { 26 RenderFrameHost* host) {
27 return std::string(); 27 return std::string();
28 } 28 }
(...skipping 20 matching lines...) Expand all
49 49
50 std::string DevToolsManagerDelegate::GetFrontendResource( 50 std::string DevToolsManagerDelegate::GetFrontendResource(
51 const std::string& path) { 51 const std::string& path) {
52 return std::string(); 52 return std::string();
53 } 53 }
54 54
55 DevToolsManagerDelegate::~DevToolsManagerDelegate() { 55 DevToolsManagerDelegate::~DevToolsManagerDelegate() {
56 } 56 }
57 57
58 } // namespace content 58 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/site_per_process_devtools_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698