| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_controller_factory.h" | 5 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/message_loop/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" | 100 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" |
| 101 #endif | 101 #endif |
| 102 | 102 |
| 103 #if defined(USE_AURA) | 103 #if defined(USE_AURA) |
| 104 #include "chrome/browser/ui/webui/gesture_config_ui.h" | 104 #include "chrome/browser/ui/webui/gesture_config_ui.h" |
| 105 #include "ui/keyboard/keyboard_constants.h" | 105 #include "ui/keyboard/keyboard_constants.h" |
| 106 #include "ui/keyboard/keyboard_ui_controller.h" | 106 #include "ui/keyboard/keyboard_ui_controller.h" |
| 107 #endif | 107 #endif |
| 108 | 108 |
| 109 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) | 109 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) |
| 110 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" | 110 #include "chrome/browser/ui/sync/sync_promo_ui.h" |
| 111 #endif | 111 #endif |
| 112 | 112 |
| 113 #if defined(OS_WIN) | 113 #if defined(OS_WIN) |
| 114 #include "chrome/browser/ui/webui/conflicts_ui.h" | 114 #include "chrome/browser/ui/webui/conflicts_ui.h" |
| 115 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h" | 115 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h" |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 #if (defined(USE_NSS) || defined(USE_OPENSSL)) && defined(USE_AURA) | 118 #if (defined(USE_NSS) || defined(USE_OPENSSL)) && defined(USE_AURA) |
| 119 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" | 119 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" |
| 120 #endif | 120 #endif |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 if (page_url.host() == chrome::kChromeUISettingsFrameHost) | 567 if (page_url.host() == chrome::kChromeUISettingsFrameHost) |
| 568 return options::OptionsUI::GetFaviconResourceBytes(scale_factor); | 568 return options::OptionsUI::GetFaviconResourceBytes(scale_factor); |
| 569 | 569 |
| 570 // Android doesn't use the plugins pages. | 570 // Android doesn't use the plugins pages. |
| 571 if (page_url.host() == chrome::kChromeUIPluginsHost) | 571 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 572 return PluginsUI::GetFaviconResourceBytes(scale_factor); | 572 return PluginsUI::GetFaviconResourceBytes(scale_factor); |
| 573 #endif | 573 #endif |
| 574 | 574 |
| 575 return NULL; | 575 return NULL; |
| 576 } | 576 } |
| OLD | NEW |