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

Side by Side Diff: chrome/browser/tab_contents/test_web_contents.cc

Issue 62044: Make the RenderViewHostFactory a global. This prevents us from having to pass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/tab_contents/test_web_contents.h" 5 #include "chrome/browser/tab_contents/test_web_contents.h"
6 6
7 #include "chrome/browser/renderer_host/test_render_view_host.h" 7 #include "chrome/browser/renderer_host/test_render_view_host.h"
8 8
9 TestWebContents::TestWebContents(Profile* profile, SiteInstance* instance, 9 TestWebContents::TestWebContents(Profile* profile, SiteInstance* instance)
10 RenderViewHostFactory* rvh_factory) 10 : WebContents(profile, instance, MSG_ROUTING_NONE, NULL),
11 : WebContents(profile, instance, rvh_factory, MSG_ROUTING_NONE, NULL),
12 transition_cross_site(false) { 11 transition_cross_site(false) {
13 } 12 }
14 13
15 TestRenderViewHost* TestWebContents::pending_rvh() { 14 TestRenderViewHost* TestWebContents::pending_rvh() {
16 return static_cast<TestRenderViewHost*>( 15 return static_cast<TestRenderViewHost*>(
17 render_manager_.pending_render_view_host_); 16 render_manager_.pending_render_view_host_);
18 } 17 }
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/test_web_contents.h ('k') | chrome/browser/tab_contents/web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698