Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/profiles/profiles_state.h" | 5 #include "chrome/browser/profiles/profiles_state.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/prefs/pref_registry_simple.h" | 8 #include "base/prefs/pref_registry_simple.h" |
| 9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "chrome/browser/browser_process.h" | 11 #include "chrome/browser/browser_process.h" |
| 12 #include "chrome/browser/profiles/gaia_info_update_service.h" | 12 #include "chrome/browser/profiles/gaia_info_update_service.h" |
| 13 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" | 13 #include "chrome/browser/profiles/gaia_info_update_service_factory.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/browser/profiles/profile_info_cache.h" | 15 #include "chrome/browser/profiles/profile_info_cache.h" |
| 16 #include "chrome/browser/profiles/profile_manager.h" | 16 #include "chrome/browser/profiles/profile_manager.h" |
| 17 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" | 17 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" |
| 18 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
| 19 #include "chrome/common/chrome_constants.h" | 19 #include "chrome/common/chrome_constants.h" |
| 20 #include "chrome/common/pref_names.h" | 20 #include "chrome/common/pref_names.h" |
| 21 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 21 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 22 #include "components/signin/core/common/profile_management_switches.h" | 22 #include "components/signin/core/common/profile_management_switches.h" |
| 23 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
| 24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
| 25 #include "ui/gfx/text_elider.h" | |
| 25 | 26 |
| 26 #if defined(OS_CHROMEOS) | 27 #if defined(OS_CHROMEOS) |
| 27 #include "chrome/browser/chromeos/login/users/user_manager.h" | 28 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 28 #endif | 29 #endif |
| 29 | 30 |
| 30 namespace profiles { | 31 namespace profiles { |
| 31 | 32 |
| 32 bool IsMultipleProfilesEnabled() { | 33 bool IsMultipleProfilesEnabled() { |
| 33 #if defined(OS_ANDROID) | 34 #if defined(OS_ANDROID) |
| 34 return false; | 35 return false; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 if (cache.GetNumberOfProfiles() == 1 && has_default_name && | 75 if (cache.GetNumberOfProfiles() == 1 && has_default_name && |
| 75 cache.GetUserNameOfProfileAtIndex(index).empty()) { | 76 cache.GetUserNameOfProfileAtIndex(index).empty()) { |
| 76 display_name = l10n_util::GetStringUTF16(IDS_SINGLE_PROFILE_DISPLAY_NAME); | 77 display_name = l10n_util::GetStringUTF16(IDS_SINGLE_PROFILE_DISPLAY_NAME); |
| 77 } else { | 78 } else { |
| 78 display_name = profile_name; | 79 display_name = profile_name; |
| 79 } | 80 } |
| 80 } | 81 } |
| 81 return display_name; | 82 return display_name; |
| 82 } | 83 } |
| 83 | 84 |
| 85 base::string16 GetAvatarButtonTextForProfile(Profile* profile) { | |
| 86 const int kMaxCharactersToDisplay = 15; | |
| 87 base::string16 name = GetAvatarNameForProfile(profile->GetPath()); | |
| 88 name = gfx::TruncateString(name, | |
| 89 kMaxCharactersToDisplay, | |
| 90 gfx::CHARACTER_BREAK); | |
| 91 if (profile->IsSupervised()) | |
| 92 name = l10n_util::GetStringFUTF16(IDS_SUPERVISED_USER_NEW_AVATAR_LABEL, | |
|
noms (inactive)
2014/07/22 13:40:59
nit: I think this may need { } because the stateme
Marc Treib
2014/07/22 14:12:44
Done.
| |
| 93 name); | |
| 94 return name; | |
| 95 } | |
| 96 | |
| 84 void UpdateProfileName(Profile* profile, | 97 void UpdateProfileName(Profile* profile, |
| 85 const base::string16& new_profile_name) { | 98 const base::string16& new_profile_name) { |
| 86 PrefService* pref_service = profile->GetPrefs(); | 99 PrefService* pref_service = profile->GetPrefs(); |
| 87 // Updating the profile preference will cause the cache to be updated for | 100 // Updating the profile preference will cause the cache to be updated for |
| 88 // this preference. | 101 // this preference. |
| 89 pref_service->SetString(prefs::kProfileName, | 102 pref_service->SetString(prefs::kProfileName, |
| 90 base::UTF16ToUTF8(new_profile_name)); | 103 base::UTF16ToUTF8(new_profile_name)); |
| 91 } | 104 } |
| 92 | 105 |
| 93 std::vector<std::string> GetSecondaryAccountsForProfile( | 106 std::vector<std::string> GetSecondaryAccountsForProfile( |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 122 GAIAInfoUpdateServiceFactory::GetInstance()->GetForProfile(profile)->Update(); | 135 GAIAInfoUpdateServiceFactory::GetInstance()->GetForProfile(profile)->Update(); |
| 123 } | 136 } |
| 124 | 137 |
| 125 SigninErrorController* GetSigninErrorController(Profile* profile) { | 138 SigninErrorController* GetSigninErrorController(Profile* profile) { |
| 126 ProfileOAuth2TokenService* token_service = | 139 ProfileOAuth2TokenService* token_service = |
| 127 ProfileOAuth2TokenServiceFactory::GetForProfile(profile); | 140 ProfileOAuth2TokenServiceFactory::GetForProfile(profile); |
| 128 return token_service ? token_service->signin_error_controller() : NULL; | 141 return token_service ? token_service->signin_error_controller() : NULL; |
| 129 } | 142 } |
| 130 | 143 |
| 131 } // namespace profiles | 144 } // namespace profiles |
| OLD | NEW |