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

Side by Side Diff: content/browser/devtools/forwarding_agent_host.cc

Issue 559933003: [DevTools] Rename DevToolsManagerImpl to DevToolsManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 "content/browser/devtools/forwarding_agent_host.h" 5 #include "content/browser/devtools/forwarding_agent_host.h"
6 6
7 #include "content/browser/devtools/devtools_manager_impl.h"
8
9 namespace content { 7 namespace content {
10 8
11 ForwardingAgentHost::ForwardingAgentHost( 9 ForwardingAgentHost::ForwardingAgentHost(
12 DevToolsExternalAgentProxyDelegate* delegate) 10 DevToolsExternalAgentProxyDelegate* delegate)
13 : delegate_(delegate) { 11 : delegate_(delegate) {
14 } 12 }
15 13
16 ForwardingAgentHost::~ForwardingAgentHost() { 14 ForwardingAgentHost::~ForwardingAgentHost() {
17 } 15 }
18 16
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 49
52 bool ForwardingAgentHost::Activate() { 50 bool ForwardingAgentHost::Activate() {
53 return false; 51 return false;
54 } 52 }
55 53
56 bool ForwardingAgentHost::Close() { 54 bool ForwardingAgentHost::Close() {
57 return false; 55 return false;
58 } 56 }
59 57
60 } // content 58 } // content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698