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

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

Issue 2252793002: Improves first run dialog performance on Win8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 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
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 <stddef.h> 7 #include <stddef.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) 157 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
158 #include "chrome/browser/ui/sync/sync_promo_ui.h" 158 #include "chrome/browser/ui/sync/sync_promo_ui.h"
159 #include "chrome/browser/ui/webui/signin/inline_login_ui.h" 159 #include "chrome/browser/ui/webui/signin/inline_login_ui.h"
160 #include "chrome/browser/ui/webui/signin/sync_confirmation_ui.h" 160 #include "chrome/browser/ui/webui/signin/sync_confirmation_ui.h"
161 #include "chrome/browser/ui/webui/signin/user_manager_ui.h" 161 #include "chrome/browser/ui/webui/signin/user_manager_ui.h"
162 #endif 162 #endif
163 163
164 #if defined(OS_WIN) 164 #if defined(OS_WIN)
165 #include "chrome/browser/ui/webui/conflicts_ui.h" 165 #include "chrome/browser/ui/webui/conflicts_ui.h"
166 #include "chrome/browser/ui/webui/set_as_default_browser_ui.h" 166 #include "chrome/browser/ui/webui/set_as_default_browser_ui_win.h"
167 #endif 167 #endif
168 168
169 #if (defined(USE_NSS_CERTS) || defined(USE_OPENSSL_CERTS)) && defined(USE_AURA) 169 #if (defined(USE_NSS_CERTS) || defined(USE_OPENSSL_CERTS)) && defined(USE_AURA)
170 #include "chrome/browser/ui/webui/certificate_viewer_ui.h" 170 #include "chrome/browser/ui/webui/certificate_viewer_ui.h"
171 #endif 171 #endif
172 172
173 #if defined(ENABLE_SERVICE_DISCOVERY) 173 #if defined(ENABLE_SERVICE_DISCOVERY)
174 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h" 174 #include "chrome/browser/ui/webui/local_discovery/local_discovery_ui.h"
175 #endif 175 #endif
176 176
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 #endif 812 #endif
813 813
814 // Android doesn't use the plugins pages. 814 // Android doesn't use the plugins pages.
815 if (page_url.host() == chrome::kChromeUIPluginsHost) 815 if (page_url.host() == chrome::kChromeUIPluginsHost)
816 return PluginsUI::GetFaviconResourceBytes(scale_factor); 816 return PluginsUI::GetFaviconResourceBytes(scale_factor);
817 817
818 #endif 818 #endif
819 819
820 return NULL; 820 return NULL;
821 } 821 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/startup/default_browser_prompt_win.cc ('k') | chrome/browser/ui/webui/set_as_default_browser_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698