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

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

Issue 9146028: Define the public interface for content browser SiteInstance. This interface is implemented by th... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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: content/browser/tab_contents/render_view_host_manager.h
===================================================================
--- content/browser/tab_contents/render_view_host_manager.h (revision 118952)
+++ content/browser/tab_contents/render_view_host_manager.h (working copy)
@@ -9,7 +9,7 @@
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
-#include "content/browser/site_instance.h"
+#include "content/browser/site_instance_impl.h"
#include "content/common/content_export.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
@@ -101,7 +101,7 @@
// For arguments, see TabContents constructor.
void Init(content::BrowserContext* browser_context,
- SiteInstance* site_instance,
+ content::SiteInstance* site_instance,
int routing_id);
// Returns the currently active RenderViewHost.
@@ -220,14 +220,14 @@
// Returns an appropriate SiteInstance object for the given NavigationEntry,
// possibly reusing the current SiteInstance.
// Never called if --process-per-tab is used.
- SiteInstance* GetSiteInstanceForEntry(
+ content::SiteInstance* GetSiteInstanceForEntry(
const content::NavigationEntryImpl& entry,
- SiteInstance* curr_instance);
+ content::SiteInstance* curr_instance);
// Helper method to create a pending RenderViewHost for a cross-site
// navigation.
bool CreatePendingRenderView(const content::NavigationEntryImpl& entry,
- SiteInstance* instance);
+ content::SiteInstance* instance);
// Sets up the necessary state for a new RenderViewHost navigating to the
// given entry.

Powered by Google App Engine
This is Rietveld 408576698