| Index: content/browser/webui/empty_web_ui_factory.cc
|
| diff --git a/content/browser/webui/empty_web_ui_factory.cc b/content/browser/webui/empty_web_ui_factory.cc
|
| index fd29847c7a73c8f0500e65a48f322b65293e8a10..4e4b8eb285e919c84314571b3db0ec8800d90453 100644
|
| --- a/content/browser/webui/empty_web_ui_factory.cc
|
| +++ b/content/browser/webui/empty_web_ui_factory.cc
|
| @@ -17,13 +17,13 @@ WebUI* EmptyWebUIFactory::CreateWebUIForURL(TabContents* source,
|
| return NULL;
|
| }
|
|
|
| -WebUI::TypeID EmptyWebUIFactory::GetWebUIType(Profile* profile,
|
| - const GURL& url) const {
|
| +WebUI::TypeID EmptyWebUIFactory::GetWebUIType(
|
| + content::BrowserContext* browser_context, const GURL& url) const {
|
| return WebUI::kNoWebUI;
|
| }
|
|
|
| -bool EmptyWebUIFactory::UseWebUIForURL(Profile* profile,
|
| - const GURL& url) const {
|
| +bool EmptyWebUIFactory::UseWebUIForURL(
|
| + content::BrowserContext* browser_context, const GURL& url) const {
|
| return false;
|
| }
|
|
|
| @@ -31,8 +31,9 @@ bool EmptyWebUIFactory::HasWebUIScheme(const GURL& url) const {
|
| return false;
|
| }
|
|
|
| -bool EmptyWebUIFactory::IsURLAcceptableForWebUI(Profile* profile,
|
| - const GURL& url) const {
|
| +bool EmptyWebUIFactory::IsURLAcceptableForWebUI(
|
| + content::BrowserContext* browser_context,
|
| + const GURL& url) const {
|
| return false;
|
| }
|
|
|
|
|