diff options
Diffstat (limited to 'content/browser/web_contents/interstitial_page_impl.h')
-rw-r--r-- | content/browser/web_contents/interstitial_page_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/web_contents/interstitial_page_impl.h b/content/browser/web_contents/interstitial_page_impl.h index edc2a9c..856ca1a 100644 --- a/content/browser/web_contents/interstitial_page_impl.h +++ b/content/browser/web_contents/interstitial_page_impl.h @@ -83,7 +83,7 @@ class CONTENT_EXPORT InterstitialPageImpl const content::NotificationDetails& details) OVERRIDE; // RenderViewHostDelegate implementation: - virtual View* GetViewDelegate() OVERRIDE; + virtual content::RenderViewHostDelegateView* GetDelegateView() OVERRIDE; virtual const GURL& GetURL() const OVERRIDE; virtual void RenderViewGone(content::RenderViewHost* render_view_host, base::TerminationStatus status, @@ -138,7 +138,7 @@ class CONTENT_EXPORT InterstitialPageImpl content::NotificationRegistrar notification_registrar_; private: - class InterstitialPageRVHViewDelegate; + class InterstitialPageRVHDelegateView; // Disable the interstitial: // - if it is not yet showing, then it won't be shown. @@ -202,7 +202,7 @@ class CONTENT_EXPORT InterstitialPageImpl string16 original_web_contents_title_; // Our RenderViewHostViewDelegate, necessary for accelerators to work. - scoped_ptr<InterstitialPageRVHViewDelegate> rvh_view_delegate_; + scoped_ptr<InterstitialPageRVHDelegateView> rvh_delegate_view_; // Settings passed to the renderer. mutable content::RendererPreferences renderer_preferences_; |