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

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

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 years 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/debugger/devtools_frontend_host.h" 5 #include "content/browser/devtools/devtools_frontend_host.h"
6 6
7 #include "content/browser/debugger/devtools_manager_impl.h" 7 #include "content/browser/devtools/devtools_manager_impl.h"
8 #include "content/browser/renderer_host/render_view_host_impl.h" 8 #include "content/browser/renderer_host/render_view_host_impl.h"
9 #include "content/browser/web_contents/web_contents_impl.h" 9 #include "content/browser/web_contents/web_contents_impl.h"
10 #include "content/common/devtools_messages.h" 10 #include "content/common/devtools_messages.h"
11 #include "content/public/browser/devtools_client_host.h" 11 #include "content/public/browser/devtools_client_host.h"
12 #include "content/public/browser/devtools_frontend_host_delegate.h" 12 #include "content/public/browser/devtools_frontend_host_delegate.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 // static 16 // static
17 DevToolsClientHost* DevToolsClientHost::CreateDevToolsFrontendHost( 17 DevToolsClientHost* DevToolsClientHost::CreateDevToolsFrontendHost(
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 const std::string& url, 116 const std::string& url,
117 const std::string& content) { 117 const std::string& content) {
118 delegate_->AppendToFile(url, content); 118 delegate_->AppendToFile(url, content);
119 } 119 }
120 120
121 void DevToolsFrontendHost::OnRequestSetDockSide(const std::string& side) { 121 void DevToolsFrontendHost::OnRequestSetDockSide(const std::string& side) {
122 delegate_->SetDockSide(side); 122 delegate_->SetDockSide(side);
123 } 123 }
124 124
125 } // namespace content 125 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_frontend_host.h ('k') | content/browser/devtools/devtools_http_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698