| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/webui/chrome_web_ui_factory.h" | 5 #include "chrome/browser/ui/webui/chrome_web_ui_factory.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/about_flags.h" | 8 #include "chrome/browser/about_flags.h" |
| 9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
| 10 #include "chrome/browser/extensions/extension_web_ui.h" | 10 #include "chrome/browser/extensions/extension_web_ui.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.h" | 57 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.h" |
| 58 #include "chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.h" | 58 #include "chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.h" |
| 59 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 59 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
| 60 #include "chrome/browser/ui/webui/chromeos/mobile_setup_ui.h" | 60 #include "chrome/browser/ui/webui/chromeos/mobile_setup_ui.h" |
| 61 #include "chrome/browser/ui/webui/chromeos/proxy_settings_ui.h" | 61 #include "chrome/browser/ui/webui/chromeos/proxy_settings_ui.h" |
| 62 #include "chrome/browser/ui/webui/chromeos/register_page_ui.h" | 62 #include "chrome/browser/ui/webui/chromeos/register_page_ui.h" |
| 63 #include "chrome/browser/ui/webui/chromeos/sim_unlock_ui.h" | 63 #include "chrome/browser/ui/webui/chromeos/sim_unlock_ui.h" |
| 64 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" | 64 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" |
| 65 #include "chrome/browser/ui/webui/active_downloads_ui.h" | 65 #include "chrome/browser/ui/webui/active_downloads_ui.h" |
| 66 #else | 66 #else |
| 67 #include "chrome/browser/ui/webui/sync_promo_ui.h" | 67 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
| 68 #endif | 68 #endif |
| 69 | 69 |
| 70 #if defined(USE_VIRTUAL_KEYBOARD) | 70 #if defined(USE_VIRTUAL_KEYBOARD) |
| 71 #include "chrome/browser/ui/webui/keyboard_ui.h" | 71 #include "chrome/browser/ui/webui/keyboard_ui.h" |
| 72 #endif | 72 #endif |
| 73 | 73 |
| 74 #if defined(OS_WIN) | 74 #if defined(OS_WIN) |
| 75 #include "chrome/browser/ui/webui/conflicts_ui.h" | 75 #include "chrome/browser/ui/webui/conflicts_ui.h" |
| 76 #endif | 76 #endif |
| 77 | 77 |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 return OptionsUI::GetFaviconResourceBytes(); | 453 return OptionsUI::GetFaviconResourceBytes(); |
| 454 | 454 |
| 455 if (page_url.host() == chrome::kChromeUISettingsFrameHost) | 455 if (page_url.host() == chrome::kChromeUISettingsFrameHost) |
| 456 return Options2UI::GetFaviconResourceBytes(); | 456 return Options2UI::GetFaviconResourceBytes(); |
| 457 | 457 |
| 458 if (page_url.host() == chrome::kChromeUIPluginsHost) | 458 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 459 return PluginsUI::GetFaviconResourceBytes(); | 459 return PluginsUI::GetFaviconResourceBytes(); |
| 460 | 460 |
| 461 return NULL; | 461 return NULL; |
| 462 } | 462 } |
| OLD | NEW |