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

Unified Diff: chrome/browser/ui/browser.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: chrome/browser/ui/browser.h
===================================================================
--- chrome/browser/ui/browser.h (revision 118703)
+++ chrome/browser/ui/browser.h (working copy)
@@ -72,6 +72,7 @@
namespace content {
class NavigationController;
+class SiteInstance;
jam 2012/01/24 03:29:33 nit: not needed since one of the methods that use
}
namespace gfx {
@@ -774,7 +775,7 @@
// all its supporting objects and observers.
static TabContentsWrapper*
TabContentsFactory(Profile* profile,
- SiteInstance* site_instance,
+ content::SiteInstance* site_instance,
int routing_id,
const content::WebContents* base_web_contents,
SessionStorageNamespace* session_storage_namespace);
@@ -800,7 +801,7 @@
Profile* profile,
content::PageTransition transition,
bool defer_load,
- SiteInstance* instance) const;
+ content::SiteInstance* instance) const;
virtual bool CanDuplicateContentsAt(int index);
virtual void DuplicateContentsAt(int index);
virtual void CloseFrameAfterDragSession();
@@ -1293,7 +1294,7 @@
// Creates a BackgroundContents if appropriate; return true if one was
// created.
bool MaybeCreateBackgroundContents(int route_id,
- SiteInstance* site,
+ content::SiteInstance* site,
const GURL& opener_url,
const string16& frame_name);

Powered by Google App Engine
This is Rietveld 408576698