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

Unified Diff: content/browser/site_instance_impl.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/site_instance_impl.h
===================================================================
--- content/browser/site_instance_impl.h (revision 118703)
+++ content/browser/site_instance_impl.h (working copy)
@@ -10,18 +10,16 @@
#include "content/common/content_export.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
+#include "content/public/browser/site_instance.h"
#include "googleurl/src/gurl.h"
-class BrowsingInstance;
-
namespace content {
-class BrowserContext;
class RenderProcessHostFactory;
}
///////////////////////////////////////////////////////////////////////////////
//
-// SiteInstance class
+// SiteInstanceImpl class
//
// A SiteInstance is a data structure that is associated with all pages in a
// given instance of a web site. Here, a web site is identified by its
@@ -53,11 +51,21 @@
// tabs with no NavigationEntries or in NavigationEntries in the history.
//
///////////////////////////////////////////////////////////////////////////////
-class CONTENT_EXPORT SiteInstance : public base::RefCounted<SiteInstance>,
- public content::NotificationObserver {
+class CONTENT_EXPORT SiteInstanceImpl : public content::SiteInstance,
+ public content::NotificationObserver {
public:
- // Returns a unique ID for this SiteInstance.
- int32 id() { return id_; }
+ // content::SiteInstance interface overrides.
+ virtual int32 GetId() OVERRIDE;
+ virtual bool HasProcess() const OVERRIDE;
+ virtual content::RenderProcessHost* GetProcess() OVERRIDE;
+ virtual void SetSite(const GURL& url) OVERRIDE;
+ virtual const GURL& GetSite() const OVERRIDE;
+ virtual bool HasSite() const OVERRIDE;
+ virtual bool HasRelatedSiteInstance(const GURL& url) OVERRIDE;
+ virtual SiteInstance* GetRelatedSiteInstance(const GURL& url) OVERRIDE;
+ virtual bool HasWrongProcessForURL(const GURL& url) const OVERRIDE;
jam 2012/01/24 03:29:33 nit extra space
ananta 2012/01/24 23:46:26 Done.
+ virtual content::BrowserContext* GetBrowserContext() const OVERRIDE;
+ virtual BrowsingInstance* GetBrowsingInstance() const OVERRIDE;
// Sets the factory used to create new RenderProcessHosts. This will also be
// passed on to SiteInstances spawned by this one.
@@ -70,96 +78,18 @@
render_process_host_factory_ = rph_factory;
}
- // Whether this SiteInstance has a running process associated with it.
- bool HasProcess() const;
-
- // Returns the current process being used to render pages in this
- // SiteInstance. If the process has crashed or otherwise gone away, then
- // this method will create a new process and update our host ID accordingly.
- content::RenderProcessHost* GetProcess();
-
- // Set / Get the web site that this SiteInstance is rendering pages for.
- // This includes the scheme and registered domain, but not the port. If the
- // URL does not have a valid registered domain, then the full hostname is
- // stored.
- void SetSite(const GURL& url);
- const GURL& site() const { return site_; }
- bool has_site() const { return has_site_; }
-
- // Returns whether there is currently a related SiteInstance (registered with
- // BrowsingInstance) for the site of the given url. If so, we should try to
- // avoid dedicating an unused SiteInstance to it (e.g., in a new tab).
- bool HasRelatedSiteInstance(const GURL& url);
-
- // Gets a SiteInstance for the given URL that shares the current
- // BrowsingInstance, creating a new SiteInstance if necessary. This ensures
- // that a BrowsingInstance only has one SiteInstance per site, so that pages
- // in a BrowsingInstance have the ability to script each other. Callers
- // should ensure that this SiteInstance becomes ref counted, by storing it in
- // a scoped_refptr. (By having this method, we can hide the BrowsingInstance
- // class from the rest of the codebase.)
- // TODO(creis): This may be an argument to build a pass_refptr<T> class, as
- // Darin suggests.
- SiteInstance* GetRelatedSiteInstance(const GURL& url);
-
- // Returns whether this SiteInstance has a process that is the wrong type for
- // the given URL. If so, the browser should force a process swap when
- // navigating to the URL.
- bool HasWrongProcessForURL(const GURL& url) const;
-
- // Browser context to which this SiteInstance (and all related
- // SiteInstances) belongs.
- content::BrowserContext* GetBrowserContext() const;
-
- // Factory method to create a new SiteInstance. This will create a new
- // new BrowsingInstance, so it should only be used when creating a new tab
- // from scratch (or similar circumstances). Callers should ensure that
- // this SiteInstance becomes ref counted, by storing it in a scoped_refptr.
- //
- // The render process host factory may be NULL. See SiteInstance constructor.
- //
- // TODO(creis): This may be an argument to build a pass_refptr<T> class, as
- // Darin suggests.
- static SiteInstance* CreateSiteInstance(
- content::BrowserContext* browser_context);
-
- // Factory method to get the appropriate SiteInstance for the given URL, in
- // a new BrowsingInstance. Use this instead of CreateSiteInstance when you
- // know the URL, since it allows special site grouping rules to be applied
- // (for example, to group chrome-ui pages into the same instance).
- static SiteInstance* CreateSiteInstanceForURL(
- content::BrowserContext* browser_context, const GURL& url);
-
- // Returns the site for the given URL, which includes only the scheme and
- // registered domain. Returns an empty GURL if the URL has no host.
- static GURL GetSiteForURL(content::BrowserContext* context, const GURL& url);
-
- // Return whether both URLs are part of the same web site, for the purpose of
- // assigning them to processes accordingly. The decision is currently based
- // on the registered domain of the URLs (google.com, bbc.co.uk), as well as
- // the scheme (https, http). This ensures that two pages will be in
- // the same process if they can communicate with other via JavaScript.
- // (e.g., docs.google.com and mail.google.com have DOM access to each other
- // if they both set their document.domain properties to google.com.)
- static bool IsSameWebSite(content::BrowserContext* browser_context,
- const GURL& url1, const GURL& url2);
-
protected:
- friend class base::RefCounted<SiteInstance>;
friend class BrowsingInstance;
+ friend class content::SiteInstance;
// Virtual to allow tests to extend it.
- virtual ~SiteInstance();
+ virtual ~SiteInstanceImpl();
// Create a new SiteInstance. Protected to give access to BrowsingInstance
// and tests; most callers should use CreateSiteInstance or
// GetRelatedSiteInstance instead.
- explicit SiteInstance(BrowsingInstance* browsing_instance);
+ explicit SiteInstanceImpl(BrowsingInstance* browsing_instance);
- // Get the effective URL for the given actual URL.
- static GURL GetEffectiveURL(content::BrowserContext* browser_context,
- const GURL& url);
-
private:
// content::NotificationObserver implementation.
virtual void Observe(int type,
@@ -198,7 +128,7 @@
FRIEND_TEST_ALL_PREFIXES(RenderViewHostManagerTest, NewTabPageProcesses);
- DISALLOW_COPY_AND_ASSIGN(SiteInstance);
+ DISALLOW_COPY_AND_ASSIGN(SiteInstanceImpl);
};
#endif // CONTENT_BROWSER_RENDERER_HOST_SITE_INSTANCE_H_

Powered by Google App Engine
This is Rietveld 408576698