diff options
Diffstat (limited to 'content/public/browser/web_contents.h')
-rw-r--r-- | content/public/browser/web_contents.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h index 393f984..2811e1df 100644 --- a/content/public/browser/web_contents.h +++ b/content/public/browser/web_contents.h @@ -21,7 +21,6 @@ class InterstitialPage; class RenderViewHost; class RenderWidgetHostView; class SessionStorageNamespace; -class SiteInstance; namespace base { class PropertyBag; @@ -44,6 +43,7 @@ class NavigationController; class RenderProcessHost; class WebContentsDelegate; struct RendererPreferences; +class SiteInstance; struct SSLStatus; // TODO(jam): of course we will have to rename WebContentsView etc to use // WebContents. @@ -136,7 +136,8 @@ class WebContents : public PageNavigator { // The max page ID for any page that the given SiteInstance has loaded in // this TabContents. - virtual int32 GetMaxPageIDForSiteInstance(SiteInstance* site_instance) = 0; + virtual int32 GetMaxPageIDForSiteInstance( + SiteInstance* site_instance) = 0; // Returns the SiteInstance associated with the current page. virtual SiteInstance* GetSiteInstance() const = 0; |