| 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 <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" | 153 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" |
| 154 #endif | 154 #endif |
| 155 | 155 |
| 156 #if defined(ENABLE_APP_LIST) | 156 #if defined(ENABLE_APP_LIST) |
| 157 #include "chrome/browser/ui/webui/app_list/start_page_ui.h" | 157 #include "chrome/browser/ui/webui/app_list/start_page_ui.h" |
| 158 #endif | 158 #endif |
| 159 | 159 |
| 160 #if defined(ENABLE_EXTENSIONS) | 160 #if defined(ENABLE_EXTENSIONS) |
| 161 #include "chrome/browser/extensions/extension_web_ui.h" | 161 #include "chrome/browser/extensions/extension_web_ui.h" |
| 162 #include "chrome/browser/ui/webui/extensions/extensions_ui.h" | 162 #include "chrome/browser/ui/webui/extensions/extensions_ui.h" |
| 163 #include "chrome/browser/ui/webui/voicesearch_ui.h" | 163 #include "chrome/browser/ui/webui/voice_search_ui.h" |
| 164 #include "chrome/common/extensions/extension_constants.h" | 164 #include "chrome/common/extensions/extension_constants.h" |
| 165 #include "extensions/browser/extension_registry.h" | 165 #include "extensions/browser/extension_registry.h" |
| 166 #include "extensions/browser/extension_system.h" | 166 #include "extensions/browser/extension_system.h" |
| 167 #include "extensions/common/constants.h" | 167 #include "extensions/common/constants.h" |
| 168 #include "extensions/common/extension.h" | 168 #include "extensions/common/extension.h" |
| 169 #include "extensions/common/feature_switch.h" | 169 #include "extensions/common/feature_switch.h" |
| 170 #include "extensions/common/manifest.h" | 170 #include "extensions/common/manifest.h" |
| 171 #endif | 171 #endif |
| 172 | 172 |
| 173 using content::WebUI; | 173 using content::WebUI; |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 #endif | 726 #endif |
| 727 | 727 |
| 728 // Android doesn't use the plugins pages. | 728 // Android doesn't use the plugins pages. |
| 729 if (page_url.host() == chrome::kChromeUIPluginsHost) | 729 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 730 return PluginsUI::GetFaviconResourceBytes(scale_factor); | 730 return PluginsUI::GetFaviconResourceBytes(scale_factor); |
| 731 | 731 |
| 732 #endif | 732 #endif |
| 733 | 733 |
| 734 return NULL; | 734 return NULL; |
| 735 } | 735 } |
| OLD | NEW |