| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 #if defined(ENABLE_SERVICE_DISCOVERY) | 150 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 151 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" | 151 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" |
| 152 #endif | 152 #endif |
| 153 | 153 |
| 154 #if defined(ENABLE_APP_LIST) | 154 #if defined(ENABLE_APP_LIST) |
| 155 #include "chrome/browser/ui/webui/app_list/start_page_ui.h" | 155 #include "chrome/browser/ui/webui/app_list/start_page_ui.h" |
| 156 #endif | 156 #endif |
| 157 | 157 |
| 158 #if defined(ENABLE_EXTENSIONS) | 158 #if defined(ENABLE_EXTENSIONS) |
| 159 #include "chrome/browser/extensions/extension_web_ui.h" | 159 #include "chrome/browser/extensions/extension_web_ui.h" |
| 160 #include "chrome/browser/ui/webui/extensions/extension_info_ui.h" | |
| 161 #include "chrome/browser/ui/webui/extensions/extensions_ui.h" | 160 #include "chrome/browser/ui/webui/extensions/extensions_ui.h" |
| 162 #include "chrome/browser/ui/webui/voicesearch_ui.h" | 161 #include "chrome/browser/ui/webui/voicesearch_ui.h" |
| 163 #include "chrome/common/extensions/extension_constants.h" | 162 #include "chrome/common/extensions/extension_constants.h" |
| 164 #include "extensions/browser/extension_registry.h" | 163 #include "extensions/browser/extension_registry.h" |
| 165 #include "extensions/browser/extension_system.h" | 164 #include "extensions/browser/extension_system.h" |
| 166 #include "extensions/common/constants.h" | 165 #include "extensions/common/constants.h" |
| 167 #include "extensions/common/extension.h" | 166 #include "extensions/common/extension.h" |
| 168 #include "extensions/common/feature_switch.h" | 167 #include "extensions/common/feature_switch.h" |
| 169 #include "extensions/common/manifest.h" | 168 #include "extensions/common/manifest.h" |
| 170 #endif | 169 #endif |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 #endif | 720 #endif |
| 722 | 721 |
| 723 // Android doesn't use the plugins pages. | 722 // Android doesn't use the plugins pages. |
| 724 if (page_url.host() == chrome::kChromeUIPluginsHost) | 723 if (page_url.host() == chrome::kChromeUIPluginsHost) |
| 725 return PluginsUI::GetFaviconResourceBytes(scale_factor); | 724 return PluginsUI::GetFaviconResourceBytes(scale_factor); |
| 726 | 725 |
| 727 #endif | 726 #endif |
| 728 | 727 |
| 729 return NULL; | 728 return NULL; |
| 730 } | 729 } |
| OLD | NEW |