| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 155 |
| 156 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) | 156 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) |
| 157 #include "chrome/browser/ui/sync/sync_promo_ui.h" | 157 #include "chrome/browser/ui/sync/sync_promo_ui.h" |
| 158 #include "chrome/browser/ui/webui/signin/inline_login_ui.h" | 158 #include "chrome/browser/ui/webui/signin/inline_login_ui.h" |
| 159 #include "chrome/browser/ui/webui/signin/sync_confirmation_ui.h" | 159 #include "chrome/browser/ui/webui/signin/sync_confirmation_ui.h" |
| 160 #include "chrome/browser/ui/webui/signin/user_manager_ui.h" | 160 #include "chrome/browser/ui/webui/signin/user_manager_ui.h" |
| 161 #endif | 161 #endif |
| 162 | 162 |
| 163 #if defined(OS_WIN) | 163 #if defined(OS_WIN) |
| 164 #include "chrome/browser/ui/webui/conflicts_ui.h" | 164 #include "chrome/browser/ui/webui/conflicts_ui.h" |
| 165 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h" | 165 #include "chrome/browser/ui/webui/set_as_default_browser_ui_win.h" |
| 166 #endif | 166 #endif |
| 167 | 167 |
| 168 #if (defined(USE_NSS_CERTS) || defined(USE_OPENSSL_CERTS)) && defined(USE_AURA) | 168 #if (defined(USE_NSS_CERTS) || defined(USE_OPENSSL_CERTS)) && defined(USE_AURA) |
| 169 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" | 169 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" |
| 170 #endif | 170 #endif |
| 171 | 171 |
| 172 #if defined(ENABLE_SERVICE_DISCOVERY) | 172 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 173 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" | 173 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" |
| 174 #endif | 174 #endif |
| 175 | 175 |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 #endif | 809 #endif |
| 810 | 810 |
| 811 // Android doesn't use the plugins pages. | 811 // Android doesn't use the plugins pages. |
| 812 if (page_url.host() == chrome::kChromeUIPluginsHost) | 812 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 813 return PluginsUI::GetFaviconResourceBytes(scale_factor); | 813 return PluginsUI::GetFaviconResourceBytes(scale_factor); |
| 814 | 814 |
| 815 #endif | 815 #endif |
| 816 | 816 |
| 817 return NULL; | 817 return NULL; |
| 818 } | 818 } |
| OLD | NEW |