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

Side by Side Diff: chrome/browser/ui/startup/startup_browser_creator_impl.cc

Issue 14137032: Create profile .ico file on profile creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework Created 7 years, 7 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/startup/startup_browser_creator_impl.h" 5 #include "chrome/browser/ui/startup/startup_browser_creator_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "apps/app_restore_service.h" 10 #include "apps/app_restore_service.h"
(...skipping 25 matching lines...) Expand all
36 #include "chrome/browser/google/google_util.h" 36 #include "chrome/browser/google/google_util.h"
37 #include "chrome/browser/infobars/infobar_service.h" 37 #include "chrome/browser/infobars/infobar_service.h"
38 #include "chrome/browser/net/predictor.h" 38 #include "chrome/browser/net/predictor.h"
39 #include "chrome/browser/net/url_fixer_upper.h" 39 #include "chrome/browser/net/url_fixer_upper.h"
40 #include "chrome/browser/notifications/desktop_notification_service.h" 40 #include "chrome/browser/notifications/desktop_notification_service.h"
41 #include "chrome/browser/performance_monitor/startup_timer.h" 41 #include "chrome/browser/performance_monitor/startup_timer.h"
42 #include "chrome/browser/prefs/incognito_mode_prefs.h" 42 #include "chrome/browser/prefs/incognito_mode_prefs.h"
43 #include "chrome/browser/prefs/session_startup_pref.h" 43 #include "chrome/browser/prefs/session_startup_pref.h"
44 #include "chrome/browser/profiles/profile.h" 44 #include "chrome/browser/profiles/profile.h"
45 #include "chrome/browser/profiles/profile_io_data.h" 45 #include "chrome/browser/profiles/profile_io_data.h"
46 #include "chrome/browser/profiles/profile_manager.h"
47 #include "chrome/browser/profiles/profile_shortcut_manager.h"
gab 2013/05/09 13:43:56 nit: I don't think you need these includes anymore
calamity 2013/05/24 08:58:48 Done.
46 #include "chrome/browser/rlz/rlz.h" 48 #include "chrome/browser/rlz/rlz.h"
47 #include "chrome/browser/sessions/session_restore.h" 49 #include "chrome/browser/sessions/session_restore.h"
48 #include "chrome/browser/sessions/session_service.h" 50 #include "chrome/browser/sessions/session_service.h"
49 #include "chrome/browser/sessions/session_service_factory.h" 51 #include "chrome/browser/sessions/session_service_factory.h"
50 #include "chrome/browser/shell_integration.h" 52 #include "chrome/browser/shell_integration.h"
51 #include "chrome/browser/ui/app_list/app_list_service.h" 53 #include "chrome/browser/ui/app_list/app_list_service.h"
52 #include "chrome/browser/ui/browser_commands.h" 54 #include "chrome/browser/ui/browser_commands.h"
53 #include "chrome/browser/ui/browser_finder.h" 55 #include "chrome/browser/ui/browser_finder.h"
54 #include "chrome/browser/ui/browser_list.h" 56 #include "chrome/browser/ui/browser_list.h"
55 #include "chrome/browser/ui/browser_navigator.h" 57 #include "chrome/browser/ui/browser_navigator.h"
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 } 979 }
978 980
979 #if !defined(OS_WIN) 981 #if !defined(OS_WIN)
980 // static 982 // static
981 bool StartupBrowserCreatorImpl::OpenStartupURLsInExistingBrowser( 983 bool StartupBrowserCreatorImpl::OpenStartupURLsInExistingBrowser(
982 Profile* profile, 984 Profile* profile,
983 const std::vector<GURL>& startup_urls) { 985 const std::vector<GURL>& startup_urls) {
984 return false; 986 return false;
985 } 987 }
986 #endif 988 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698