| Index: chrome/browser/ui/webui/chrome_web_ui_factory.cc
|
| diff --git a/chrome/browser/ui/webui/chrome_web_ui_factory.cc b/chrome/browser/ui/webui/chrome_web_ui_factory.cc
|
| index 5a788a30fed0505e96ff461e093091c855b00ac7..af3c4d82b6438c0b8f8022360a2ab5f74c46ebb9 100644
|
| --- a/chrome/browser/ui/webui/chrome_web_ui_factory.cc
|
| +++ b/chrome/browser/ui/webui/chrome_web_ui_factory.cc
|
| @@ -180,8 +180,9 @@ static WebUIFactoryFunction GetWebUIFactoryFunction(Profile* profile,
|
| return &NewWebUI<HistoryUI>;
|
| if (url.host() == chrome::kChromeUIHistory2Host)
|
| return &NewWebUI<HistoryUI2>;
|
| - if (url.host() == chrome::kChromeUIFlagsHost)
|
| - return &NewWebUI<FlagsUI>;
|
| + // TODO(thakis): Reenable.
|
| + //if (url.host() == chrome::kChromeUIFlagsHost)
|
| + // return &NewWebUI<FlagsUI>;
|
| if (url.host() == chrome::kChromeUIFlashHost)
|
| return &NewWebUI<FlashUI>;
|
| #if defined(TOUCH_UI)
|
| @@ -385,8 +386,9 @@ RefCountedMemory* ChromeWebUIFactory::GetFaviconResourceBytes(
|
| if (page_url.host() == chrome::kChromeUIHistory2Host)
|
| return HistoryUI2::GetFaviconResourceBytes();
|
|
|
| - if (page_url.host() == chrome::kChromeUIFlagsHost)
|
| - return FlagsUI::GetFaviconResourceBytes();
|
| + // TODO(thakis): Reenable.
|
| + //if (page_url.host() == chrome::kChromeUIFlagsHost)
|
| + // return FlagsUI::GetFaviconResourceBytes();
|
|
|
| if (page_url.host() == chrome::kChromeUISessionsHost)
|
| return SessionsUI::GetFaviconResourceBytes();
|
|
|