Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1025)

Side by Side Diff: chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc

Issue 785803002: Remove unused WebUI extension files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/webui/extensions/extension_info_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/extensions/extension_info_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698