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

Unified Diff: content/public/browser/content_browser_client.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
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/site_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/content_browser_client.h
===================================================================
--- content/public/browser/content_browser_client.h (revision 118952)
+++ content/public/browser/content_browser_client.h (working copy)
@@ -23,7 +23,6 @@
class QuotaPermissionContext;
class RenderViewHost;
class ResourceDispatcherHost;
-class SiteInstance;
class SSLCertErrorHandler;
class SSLClientAuthHandler;
class SkBitmap;
@@ -34,6 +33,7 @@
class AccessTokenStore;
class BrowserMainParts;
class RenderProcessHost;
+class SiteInstance;
class WebContents;
class WebContentsView;
struct MainFunctionParams;
@@ -123,10 +123,11 @@
const GURL& site_url) = 0;
// Called when a site instance is first associated with a process.
- virtual void SiteInstanceGotProcess(SiteInstance* site_instance) = 0;
+ virtual void SiteInstanceGotProcess(
+ content::SiteInstance* site_instance) = 0;
// Called from a site instance's destructor.
- virtual void SiteInstanceDeleting(SiteInstance* site_instance) = 0;
+ virtual void SiteInstanceDeleting(content::SiteInstance* site_instance) = 0;
// Returns true if for the navigation from |current_url| to |new_url|,
// processes should be swapped (even if we are in a process model that
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/site_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698