OLD | NEW |
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 <set> | 5 #include <set> |
6 | 6 |
7 #include "chrome/browser/profiles/profile_manager.h" | 7 #include "chrome/browser/profiles/profile_manager.h" |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/metrics/field_trial.h" | 13 #include "base/metrics/field_trial.h" |
14 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_util.h" | 16 #include "base/string_util.h" |
17 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
19 #include "chrome/browser/extensions/default_apps_trial.h" | 19 #include "chrome/browser/extensions/default_apps_trial.h" |
20 #include "chrome/browser/extensions/extension_service.h" | 20 #include "chrome/browser/extensions/extension_service.h" |
21 #include "chrome/browser/extensions/extension_system.h" | |
22 #include "chrome/browser/extensions/extension_system_factory.h" | |
23 #include "chrome/browser/prefs/pref_service.h" | 21 #include "chrome/browser/prefs/pref_service.h" |
24 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 22 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
25 #include "chrome/browser/profiles/profile_info_cache.h" | 23 #include "chrome/browser/profiles/profile_info_cache.h" |
26 #include "chrome/browser/profiles/profile_metrics.h" | 24 #include "chrome/browser/profiles/profile_metrics.h" |
27 #include "chrome/browser/sessions/session_service_factory.h" | 25 #include "chrome/browser/sessions/session_service_factory.h" |
28 #include "chrome/browser/sync/profile_sync_service.h" | 26 #include "chrome/browser/sync/profile_sync_service.h" |
29 #include "chrome/browser/sync/profile_sync_service_factory.h" | 27 #include "chrome/browser/sync/profile_sync_service_factory.h" |
30 #include "chrome/browser/ui/browser.h" | 28 #include "chrome/browser/ui/browser.h" |
31 #include "chrome/browser/ui/browser_window.h" | 29 #include "chrome/browser/ui/browser_window.h" |
32 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" | 30 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 | 602 |
605 ProfileMetrics::LogNumberOfProfiles(this, ProfileMetrics::ADD_PROFILE_EVENT); | 603 ProfileMetrics::LogNumberOfProfiles(this, ProfileMetrics::ADD_PROFILE_EVENT); |
606 content::NotificationService::current()->Notify( | 604 content::NotificationService::current()->Notify( |
607 chrome::NOTIFICATION_PROFILE_ADDED, | 605 chrome::NOTIFICATION_PROFILE_ADDED, |
608 content::Source<Profile>(profile), | 606 content::Source<Profile>(profile), |
609 content::NotificationService::NoDetails()); | 607 content::NotificationService::NoDetails()); |
610 | 608 |
611 } | 609 } |
612 | 610 |
613 void ProfileManager::DoFinalInitForServices(Profile* profile, | 611 void ProfileManager::DoFinalInitForServices(Profile* profile, |
614 bool go_off_the_record) { | 612 bool go_off_the_record) { |
615 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); | 613 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
616 ExtensionSystemFactory::GetForProfile(profile)->Init(!go_off_the_record); | 614 profile->InitExtensions(!go_off_the_record); |
617 if (!command_line.HasSwitch(switches::kDisableWebResources)) | 615 if (!command_line.HasSwitch(switches::kDisableWebResources)) |
618 profile->InitPromoResources(); | 616 profile->InitPromoResources(); |
619 } | 617 } |
620 | 618 |
621 void ProfileManager::DoFinalInitLogging(Profile* profile) { | 619 void ProfileManager::DoFinalInitLogging(Profile* profile) { |
622 // Count number of extensions in this profile. | 620 // Count number of extensions in this profile. |
623 int extension_count = -1; | 621 int extension_count = -1; |
624 ExtensionService* extension_service = profile->GetExtensionService(); | 622 ExtensionService* extension_service = profile->GetExtensionService(); |
625 if (extension_service) | 623 if (extension_service) |
626 extension_count = extension_service->GetAppIds().size(); | 624 extension_count = extension_service->GetAppIds().size(); |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 AddProfileToCache(profile); | 924 AddProfileToCache(profile); |
927 } | 925 } |
928 } | 926 } |
929 | 927 |
930 void ProfileManager::RunCallbacks(const std::vector<CreateCallback>& callbacks, | 928 void ProfileManager::RunCallbacks(const std::vector<CreateCallback>& callbacks, |
931 Profile* profile, | 929 Profile* profile, |
932 Profile::CreateStatus status) { | 930 Profile::CreateStatus status) { |
933 for (size_t i = 0; i < callbacks.size(); ++i) | 931 for (size_t i = 0; i < callbacks.size(); ++i) |
934 callbacks[i].Run(profile, status); | 932 callbacks[i].Run(profile, status); |
935 } | 933 } |
OLD | NEW |