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

Unified Diff: chrome/browser/tab_contents/render_view_host_manager.h

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/render_view_host_manager.h
===================================================================
--- chrome/browser/tab_contents/render_view_host_manager.h (revision 13136)
+++ chrome/browser/tab_contents/render_view_host_manager.h (working copy)
@@ -61,17 +61,13 @@
GetLastCommittedNavigationEntryForRenderManager() = 0;
};
- // The factory is optional. It is used by unit tests to supply custom render
- // view hosts. When NULL, the regular RenderViewHost will be created.
- //
// Both delegate pointers must be non-NULL and are not owned by this class.
// They must outlive this class. The RenderViewHostDelegate is what will be
// installed into all RenderViewHosts that are created.
//
// You must call Init() before using this class and Shutdown() before
// deleting it.
- RenderViewHostManager(RenderViewHostFactory* render_view_factory,
- RenderViewHostDelegate* render_view_delegate,
+ RenderViewHostManager(RenderViewHostDelegate* render_view_delegate,
Delegate* delegate);
~RenderViewHostManager();
@@ -84,12 +80,6 @@
// Schedules all RenderViewHosts for destruction.
void Shutdown();
- // Returns true if there is a RenderViewHostFactory that will generate
- // non-standard RenderViewHosts.
- bool has_render_view_host_factory() const {
- return !!render_view_factory_;
- }
-
// Returns the currently actuive RenderViewHost.
//
// This will be non-NULL between Init() and Shutdown(). You may want to NULL
@@ -213,12 +203,6 @@
// navigation.
bool CreatePendingRenderView(SiteInstance* instance);
- // Creates a RenderViewHost using render_view_factory_ (or directly, if the
- // factory is NULL).
- RenderViewHost* CreateRenderViewHost(SiteInstance* instance,
- int routing_id,
- base::WaitableEvent* modal_dialog_event);
-
// Sets the pending RenderViewHost/DOMUI to be the active one. Note that this
// doesn't require the pending render_view_host_ pointer to be non-NULL, since
// there could be DOM UI switching as well. Call this for every commit.
« no previous file with comments | « chrome/browser/tab_contents/navigation_controller.cc ('k') | chrome/browser/tab_contents/render_view_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698