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

Unified Diff: content/browser/tab_contents/interstitial_page.h

Issue 7464009: Removal of Profile from content part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: browser_context Created 9 years, 5 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
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.

Powered by Google App Engine
This is Rietveld 408576698