| Index: content/public/browser/content_browser_client.h
|
| ===================================================================
|
| --- content/public/browser/content_browser_client.h (revision 118703)
|
| +++ 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;
|
| @@ -128,10 +128,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
|
|
|