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

Unified Diff: chrome/browser/tab_contents/navigation_controller.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/navigation_controller.cc
===================================================================
--- chrome/browser/tab_contents/navigation_controller.cc (revision 13136)
+++ chrome/browser/tab_contents/navigation_controller.cc (working copy)
@@ -148,7 +148,6 @@
NavigationController::NavigationController(TabContents* contents,
Profile* profile)
: profile_(profile),
- rvh_factory_(NULL),
pending_entry_(NULL),
last_committed_entry_index_(-1),
pending_entry_index_(-1),
@@ -166,10 +165,8 @@
NavigationController::NavigationController(
Profile* profile,
const std::vector<TabNavigation>& navigations,
- int selected_navigation,
- RenderViewHostFactory* rvh_factory)
+ int selected_navigation)
: profile_(profile),
- rvh_factory_(rvh_factory),
pending_entry_(NULL),
last_committed_entry_index_(-1),
pending_entry_index_(-1),
@@ -1047,7 +1044,7 @@
TabContents* contents = GetTabContents(entry.tab_type());
if (!contents) {
contents = TabContents::CreateWithType(entry.tab_type(), profile_,
- entry.site_instance(), rvh_factory_);
+ entry.site_instance());
if (!contents->AsWebContents()) {
// Update the max page id, otherwise the newly created TabContents may
// have reset its max page id resulting in all new navigations. We only
« no previous file with comments | « chrome/browser/tab_contents/navigation_controller.h ('k') | chrome/browser/tab_contents/render_view_host_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698