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

Unified Diff: chrome/browser/tab_contents/render_view_host_manager.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
« no previous file with comments | « chrome/browser/tab_contents/render_view_host_manager.h ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/render_view_host_manager.cc
===================================================================
--- chrome/browser/tab_contents/render_view_host_manager.cc (revision 13136)
+++ chrome/browser/tab_contents/render_view_host_manager.cc (working copy)
@@ -10,6 +10,7 @@
#include "chrome/browser/dom_ui/dom_ui_factory.h"
#include "chrome/browser/renderer_host/render_view_host.h"
#include "chrome/browser/renderer_host/render_view_host_delegate.h"
+#include "chrome/browser/renderer_host/render_view_host_factory.h"
#include "chrome/browser/renderer_host/render_widget_host_view.h"
#include "chrome/browser/tab_contents/navigation_controller.h"
#include "chrome/browser/tab_contents/navigation_entry.h"
@@ -23,12 +24,10 @@
}
RenderViewHostManager::RenderViewHostManager(
- RenderViewHostFactory* render_view_factory,
RenderViewHostDelegate* render_view_delegate,
Delegate* delegate)
: delegate_(delegate),
cross_navigation_pending_(false),
- render_view_factory_(render_view_factory),
render_view_delegate_(render_view_delegate),
render_view_host_(NULL),
pending_render_view_host_(NULL),
@@ -52,8 +51,8 @@
// ref counted.
if (!site_instance)
site_instance = SiteInstance::CreateSiteInstance(profile);
- render_view_host_ = CreateRenderViewHost(
- site_instance, routing_id, modal_dialog_event);
+ render_view_host_ = RenderViewHostFactory::Create(
+ site_instance, render_view_delegate_, routing_id, modal_dialog_event);
}
void RenderViewHostManager::Shutdown() {
@@ -399,8 +398,8 @@
// we're about to switch away, so that it sends an UpdateState message.
}
- pending_render_view_host_ =
- CreateRenderViewHost(instance, MSG_ROUTING_NONE, NULL);
+ pending_render_view_host_ = RenderViewHostFactory::Create(
+ instance, render_view_delegate_, MSG_ROUTING_NONE, NULL);
bool success = delegate_->CreateRenderViewForRenderManager(
pending_render_view_host_);
@@ -413,19 +412,6 @@
return success;
}
-RenderViewHost* RenderViewHostManager::CreateRenderViewHost(
- SiteInstance* instance,
- int routing_id,
- base::WaitableEvent* modal_dialog_event) {
- if (render_view_factory_) {
- return render_view_factory_->CreateRenderViewHost(
- instance, render_view_delegate_, routing_id, modal_dialog_event);
- } else {
- return new RenderViewHost(instance, render_view_delegate_, routing_id,
- modal_dialog_event);
- }
-}
-
void RenderViewHostManager::CommitPending() {
// First commit the DOM UI, if any.
dom_ui_.swap(pending_dom_ui_);
« no previous file with comments | « chrome/browser/tab_contents/render_view_host_manager.h ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698