Chromium Code Reviews| Index: content/browser/webui/empty_web_ui_factory.h |
| diff --git a/content/browser/webui/empty_web_ui_factory.h b/content/browser/webui/empty_web_ui_factory.h |
| index 6ca8fca56beaf1e820ebb685c9cd66a8e252e222..b71ca262942a500827744ee9785e02a497f0cc67 100644 |
| --- a/content/browser/webui/empty_web_ui_factory.h |
| +++ b/content/browser/webui/empty_web_ui_factory.h |
| @@ -17,13 +17,14 @@ class EmptyWebUIFactory : public content::WebUIFactory { |
| static EmptyWebUIFactory* GetInstance(); |
| virtual WebUI* CreateWebUIForURL(TabContents* source, |
| - const GURL& url) const; |
| - virtual WebUI::TypeID GetWebUIType(Profile* profile, |
| - const GURL& url) const; |
| - virtual bool UseWebUIForURL(Profile* profile, const GURL& url) const; |
| - virtual bool HasWebUIScheme(const GURL& url) const; |
| - virtual bool IsURLAcceptableForWebUI(Profile* profile, |
| - const GURL& url) const; |
| + const GURL& url) const OVERRIDE; |
| + virtual WebUI::TypeID GetWebUIType(content::BrowserContext* context, |
|
jam
2011/07/22 16:58:38
nit: browser_context
|
| + const GURL& url) const OVERRIDE; |
| + virtual bool UseWebUIForURL(content::BrowserContext* context, |
| + const GURL& url) const OVERRIDE; |
| + virtual bool HasWebUIScheme(const GURL& url) const OVERRIDE; |
| + virtual bool IsURLAcceptableForWebUI(content::BrowserContext* context, |
| + const GURL& url) const OVERRIDE; |
| protected: |
| EmptyWebUIFactory(); |