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

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

Issue 8992034: Merge 114608, 115692 to 963 (M17) branch. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/963/src/
Patch Set: rebasing, checking for diffs before merge Created 8 years, 12 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
« no previous file with comments | « chrome/browser/ui/browser_init.cc ('k') | chrome/browser/ui/webui/ntp/ntp_login_handler.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_factory.h" 5 #include "chrome/browser/ui/webui/chrome_web_ui_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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.h" 53 #include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.h"
54 #include "chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.h" 54 #include "chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.h"
55 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" 55 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h"
56 #include "chrome/browser/ui/webui/chromeos/mobile_setup_ui.h" 56 #include "chrome/browser/ui/webui/chromeos/mobile_setup_ui.h"
57 #include "chrome/browser/ui/webui/chromeos/proxy_settings_ui.h" 57 #include "chrome/browser/ui/webui/chromeos/proxy_settings_ui.h"
58 #include "chrome/browser/ui/webui/chromeos/register_page_ui.h" 58 #include "chrome/browser/ui/webui/chromeos/register_page_ui.h"
59 #include "chrome/browser/ui/webui/chromeos/sim_unlock_ui.h" 59 #include "chrome/browser/ui/webui/chromeos/sim_unlock_ui.h"
60 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" 60 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h"
61 #include "chrome/browser/ui/webui/active_downloads_ui.h" 61 #include "chrome/browser/ui/webui/active_downloads_ui.h"
62 #else 62 #else
63 #include "chrome/browser/ui/webui/sync_promo_ui.h" 63 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h"
64 #endif 64 #endif
65 65
66 #if defined(USE_VIRTUAL_KEYBOARD) 66 #if defined(USE_VIRTUAL_KEYBOARD)
67 #include "chrome/browser/ui/webui/keyboard_ui.h" 67 #include "chrome/browser/ui/webui/keyboard_ui.h"
68 #endif 68 #endif
69 69
70 #if defined(OS_WIN) 70 #if defined(OS_WIN)
71 #include "chrome/browser/ui/webui/conflicts_ui.h" 71 #include "chrome/browser/ui/webui/conflicts_ui.h"
72 #endif 72 #endif
73 73
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 return FlashUI::GetFaviconResourceBytes(); 436 return FlashUI::GetFaviconResourceBytes();
437 437
438 if (page_url.host() == chrome::kChromeUISettingsHost) 438 if (page_url.host() == chrome::kChromeUISettingsHost)
439 return OptionsUI::GetFaviconResourceBytes(); 439 return OptionsUI::GetFaviconResourceBytes();
440 440
441 if (page_url.host() == chrome::kChromeUIPluginsHost) 441 if (page_url.host() == chrome::kChromeUIPluginsHost)
442 return PluginsUI::GetFaviconResourceBytes(); 442 return PluginsUI::GetFaviconResourceBytes();
443 443
444 return NULL; 444 return NULL;
445 } 445 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser_init.cc ('k') | chrome/browser/ui/webui/ntp/ntp_login_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698