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

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

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 years, 4 months 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 | Annotate | Revision Log
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 "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/browser/about_flags.h" 8 #include "chrome/browser/about_flags.h"
9 #include "chrome/browser/extensions/extension_service.h" 9 #include "chrome/browser/extensions/extension_service.h"
10 #include "chrome/browser/extensions/extension_web_ui.h" 10 #include "chrome/browser/extensions/extension_web_ui.h"
(...skipping 20 matching lines...) Expand all
31 #include "chrome/browser/ui/webui/history_ui.h" 31 #include "chrome/browser/ui/webui/history_ui.h"
32 #include "chrome/browser/ui/webui/inspect_ui.h" 32 #include "chrome/browser/ui/webui/inspect_ui.h"
33 #include "chrome/browser/ui/webui/instant_ui.h" 33 #include "chrome/browser/ui/webui/instant_ui.h"
34 #include "chrome/browser/ui/webui/media/media_internals_ui.h" 34 #include "chrome/browser/ui/webui/media/media_internals_ui.h"
35 #if !defined(DISABLE_NACL) 35 #if !defined(DISABLE_NACL)
36 #include "chrome/browser/ui/webui/nacl_ui.h" 36 #include "chrome/browser/ui/webui/nacl_ui.h"
37 #endif 37 #endif
38 #include "chrome/browser/ui/webui/net_internals/net_internals_ui.h" 38 #include "chrome/browser/ui/webui/net_internals/net_internals_ui.h"
39 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" 39 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
40 #include "chrome/browser/ui/webui/omnibox/omnibox_ui.h" 40 #include "chrome/browser/ui/webui/omnibox/omnibox_ui.h"
41 #include "chrome/browser/ui/webui/options2/options_ui.h" 41 #include "chrome/browser/ui/webui/options/options_ui.h"
42 #include "chrome/browser/ui/webui/performance_monitor/web_ui.h" 42 #include "chrome/browser/ui/webui/performance_monitor/web_ui.h"
43 #include "chrome/browser/ui/webui/plugins_ui.h" 43 #include "chrome/browser/ui/webui/plugins_ui.h"
44 #include "chrome/browser/ui/webui/policy_ui.h" 44 #include "chrome/browser/ui/webui/policy_ui.h"
45 #include "chrome/browser/ui/webui/predictors/predictors_ui.h" 45 #include "chrome/browser/ui/webui/predictors/predictors_ui.h"
46 #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h" 46 #include "chrome/browser/ui/webui/print_preview/print_preview_ui.h"
47 #include "chrome/browser/ui/webui/profiler_ui.h" 47 #include "chrome/browser/ui/webui/profiler_ui.h"
48 #include "chrome/browser/ui/webui/quota_internals_ui.h" 48 #include "chrome/browser/ui/webui/quota_internals_ui.h"
49 #include "chrome/browser/ui/webui/suggestions_internals/suggestions_internals_ui .h" 49 #include "chrome/browser/ui/webui/suggestions_internals/suggestions_internals_ui .h"
50 #include "chrome/browser/ui/webui/sync_internals_ui.h" 50 #include "chrome/browser/ui/webui/sync_internals_ui.h"
51 #include "chrome/browser/ui/webui/task_manager/task_manager_ui.h" 51 #include "chrome/browser/ui/webui/task_manager/task_manager_ui.h"
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 if (page_url.host() == chrome::kChromeUISettingsFrameHost) 544 if (page_url.host() == chrome::kChromeUISettingsFrameHost)
545 return options::OptionsUI::GetFaviconResourceBytes(); 545 return options::OptionsUI::GetFaviconResourceBytes();
546 546
547 // Android doesn't use the plugins pages. 547 // Android doesn't use the plugins pages.
548 if (page_url.host() == chrome::kChromeUIPluginsHost) 548 if (page_url.host() == chrome::kChromeUIPluginsHost)
549 return PluginsUI::GetFaviconResourceBytes(); 549 return PluginsUI::GetFaviconResourceBytes();
550 #endif 550 #endif
551 551
552 return NULL; 552 return NULL;
553 } 553 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/chrome_pages.cc ('k') | chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698