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

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

Issue 17167006: move sync_promo_ui to non-webui-specific directory (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixed include guard on moved file Created 7 years, 6 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
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/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/message_loop/message_loop_proxy.h" 10 #include "base/message_loop/message_loop_proxy.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h" 100 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h"
101 #endif 101 #endif
102 102
103 #if defined(USE_AURA) 103 #if defined(USE_AURA)
104 #include "chrome/browser/ui/webui/gesture_config_ui.h" 104 #include "chrome/browser/ui/webui/gesture_config_ui.h"
105 #include "ui/keyboard/keyboard_constants.h" 105 #include "ui/keyboard/keyboard_constants.h"
106 #include "ui/keyboard/keyboard_ui_controller.h" 106 #include "ui/keyboard/keyboard_ui_controller.h"
107 #endif 107 #endif
108 108
109 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) 109 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
110 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" 110 #include "chrome/browser/ui/sync/sync_promo_ui.h"
111 #endif 111 #endif
112 112
113 #if defined(OS_WIN) 113 #if defined(OS_WIN)
114 #include "chrome/browser/ui/webui/conflicts_ui.h" 114 #include "chrome/browser/ui/webui/conflicts_ui.h"
115 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h" 115 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h"
116 #endif 116 #endif
117 117
118 #if (defined(USE_NSS) || defined(USE_OPENSSL)) && defined(USE_AURA) 118 #if (defined(USE_NSS) || defined(USE_OPENSSL)) && defined(USE_AURA)
119 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" 119 #include "chrome/browser/ui/webui/certificate_viewer_ui.h"
120 #endif 120 #endif
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 if (page_url.host() == chrome::kChromeUISettingsFrameHost) 567 if (page_url.host() == chrome::kChromeUISettingsFrameHost)
568 return options::OptionsUI::GetFaviconResourceBytes(scale_factor); 568 return options::OptionsUI::GetFaviconResourceBytes(scale_factor);
569 569
570 // Android doesn't use the plugins pages. 570 // Android doesn't use the plugins pages.
571 if (page_url.host() == chrome::kChromeUIPluginsHost) 571 if (page_url.host() == chrome::kChromeUIPluginsHost)
572 return PluginsUI::GetFaviconResourceBytes(scale_factor); 572 return PluginsUI::GetFaviconResourceBytes(scale_factor);
573 #endif 573 #endif
574 574
575 return NULL; 575 return NULL;
576 } 576 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/extensions/extension_installed_bubble.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