Index: content/browser/tab_contents/interstitial_page.h |
diff --git a/content/browser/tab_contents/interstitial_page.h b/content/browser/tab_contents/interstitial_page.h |
index 5087762dfd171a3e2d77a4f9398ffc76e36d95cd..95aa6bcdca30803e90c9e216a0cb1af2fb9ee5f2 100644 |
--- a/content/browser/tab_contents/interstitial_page.h |
+++ b/content/browser/tab_contents/interstitial_page.h |
@@ -113,20 +113,22 @@ class InterstitialPage : public NotificationObserver, |
// NotificationObserver method: |
virtual void Observe(int type, |
const NotificationSource& source, |
- const NotificationDetails& details); |
+ const NotificationDetails& details) OVERRIDE; |
// RenderViewHostDelegate implementation: |
- virtual View* GetViewDelegate(); |
- virtual const GURL& GetURL() const; |
+ virtual View* GetViewDelegate() OVERRIDE; |
+ virtual const GURL& GetURL() const OVERRIDE; |
virtual void RenderViewGone(RenderViewHost* render_view_host, |
base::TerminationStatus status, |
- int error_code); |
- virtual void DidNavigate(RenderViewHost* render_view_host, |
- const ViewHostMsg_FrameNavigate_Params& params); |
+ int error_code) OVERRIDE; |
+ virtual void DidNavigate( |
+ RenderViewHost* render_view_host, |
+ const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; |
virtual void UpdateTitle(RenderViewHost* render_view_host, |
int32 page_id, |
- const std::wstring& title); |
- virtual RendererPreferences GetRendererPrefs(Profile* profile) const; |
+ const std::wstring& title) OVERRIDE; |
+ virtual RendererPreferences GetRendererPrefs( |
+ content::BrowserContext* context) const OVERRIDE; |
jam
2011/07/22 16:58:38
nit: browser_context
|
// Invoked with the NavigationEntry that is going to be added to the |
// navigation controller. |