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

Side by Side Diff: chrome/browser/ui/webui/devtools_ui.cc

Issue 6598084: Get rid of temporary render_view_host.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/ui/webui/devtools_ui.h" 5 #include "chrome/browser/ui/webui/devtools_ui.h"
6 6
7 #include "chrome/browser/renderer_host/render_view_host.h"
8 #include "chrome/common/render_messages.h" 7 #include "chrome/common/render_messages.h"
8 #include "content/browser/renderer_host/render_view_host.h"
9 9
10 DevToolsUI::DevToolsUI(TabContents* contents) : WebUI(contents) { 10 DevToolsUI::DevToolsUI(TabContents* contents) : WebUI(contents) {
11 } 11 }
12 12
13 void DevToolsUI::RenderViewCreated(RenderViewHost* render_view_host) { 13 void DevToolsUI::RenderViewCreated(RenderViewHost* render_view_host) {
14 render_view_host->Send(new ViewMsg_SetupDevToolsClient( 14 render_view_host->Send(new ViewMsg_SetupDevToolsClient(
15 render_view_host->routing_id())); 15 render_view_host->routing_id()));
16 } 16 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/constrained_html_ui.cc ('k') | chrome/browser/ui/webui/html_dialog_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698