Index: chrome/browser/profiles/profile_attributes_entry.cc |
diff --git a/chrome/browser/profiles/profile_attributes_entry.cc b/chrome/browser/profiles/profile_attributes_entry.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8c9757615c933feaeb5279174789b98d6d7d6b2e |
--- /dev/null |
+++ b/chrome/browser/profiles/profile_attributes_entry.cc |
@@ -0,0 +1,219 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/profiles/profile_attributes_entry.h" |
+#include "chrome/browser/profiles/profile_info_cache.h" |
+ |
+ProfileAttributesEntry::ProfileAttributesEntry() |
+ : profile_info_cache_(nullptr), |
+ profile_path_(base::FilePath()) {} |
+ |
+void ProfileAttributesEntry::Initialize( |
+ ProfileInfoCache* cache, const base::FilePath& path) { |
+ DCHECK(!profile_info_cache_); |
+ DCHECK(cache); |
+ profile_info_cache_ = cache; |
+ DCHECK(profile_path_.empty()); |
+ DCHECK(!path.empty()); |
+ profile_path_ = path; |
+} |
+ |
+base::string16 ProfileAttributesEntry::GetName() const { |
+ return profile_info_cache_->GetNameOfProfileAtIndex(profile_index()); |
+} |
+ |
+base::string16 ProfileAttributesEntry::GetShortcutName() const { |
+ return profile_info_cache_->GetShortcutNameOfProfileAtIndex(profile_index()); |
+} |
+ |
+base::FilePath ProfileAttributesEntry::GetPath() const { |
+ return profile_info_cache_->GetPathOfProfileAtIndex(profile_index()); |
+} |
+ |
+base::Time ProfileAttributesEntry::GetActiveTime() const { |
+ return profile_info_cache_->GetProfileActiveTimeAtIndex(profile_index()); |
+} |
+ |
+base::string16 ProfileAttributesEntry::GetUserName() const { |
+ return profile_info_cache_->GetUserNameOfProfileAtIndex(profile_index()); |
+} |
+ |
+const gfx::Image& ProfileAttributesEntry::GetAvatarIcon() { |
+ return profile_info_cache_->GetAvatarIconOfProfileAtIndex(profile_index()); |
+} |
+ |
+std::string ProfileAttributesEntry::GetLocalAuthCredentials() const { |
+ return profile_info_cache_->GetLocalAuthCredentialsOfProfileAtIndex( |
+ profile_index()); |
+} |
+ |
+std::string ProfileAttributesEntry::GetPasswordChangeDetectionToken() const { |
+ return profile_info_cache_->GetPasswordChangeDetectionTokenAtIndex( |
+ profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::GetBackgroundStatus() const { |
+ return profile_info_cache_->GetBackgroundStatusOfProfileAtIndex( |
+ profile_index()); |
+} |
+ |
+base::string16 ProfileAttributesEntry::GetGAIAName() const { |
+ return profile_info_cache_->GetGAIANameOfProfileAtIndex(profile_index()); |
+} |
+ |
+base::string16 ProfileAttributesEntry::GetGAIAGivenName() const { |
+ return profile_info_cache_->GetGAIAGivenNameOfProfileAtIndex(profile_index()); |
+} |
+ |
+std::string ProfileAttributesEntry::GetGAIAId() const { |
+ return profile_info_cache_->GetGAIAIdOfProfileAtIndex(profile_index()); |
+} |
+ |
+const gfx::Image* ProfileAttributesEntry::GetGAIAPicture() const { |
+ return profile_info_cache_->GetGAIAPictureOfProfileAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsUsingGAIAPicture() const { |
+ return profile_info_cache_->IsUsingGAIAPictureOfProfileAtIndex( |
+ profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsSupervised() const { |
+ return profile_info_cache_->ProfileIsSupervisedAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsChild() const { |
+ return profile_info_cache_->ProfileIsChildAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsLegacySupervised() const { |
+ return profile_info_cache_->ProfileIsLegacySupervisedAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsOmitted() const { |
+ return profile_info_cache_->IsOmittedProfileAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsSigninRequired() const { |
+ return profile_info_cache_->ProfileIsSigninRequiredAtIndex(profile_index()); |
+} |
+ |
+std::string ProfileAttributesEntry::GetSupervisedUserId() const { |
+ return profile_info_cache_->GetSupervisedUserIdOfProfileAtIndex( |
+ profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsEphemeral() const { |
+ return profile_info_cache_->ProfileIsEphemeralAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsUsingDefaultName() const { |
+ return profile_info_cache_->ProfileIsUsingDefaultNameAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsAuthenticated() const { |
+ return profile_info_cache_->ProfileIsAuthenticatedAtIndex(profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsUsingDefaultAvatar() const { |
+ return profile_info_cache_->ProfileIsUsingDefaultAvatarAtIndex( |
+ profile_index()); |
+} |
+ |
+bool ProfileAttributesEntry::IsAuthError() const { |
+ return profile_info_cache_->ProfileIsAuthErrorAtIndex(profile_index()); |
+} |
+ |
+size_t ProfileAttributesEntry::GetAvatarIconIndex() const { |
+ return profile_info_cache_->GetAvatarIconIndexOfProfileAtIndex( |
+ profile_index()); |
+} |
+ |
+void ProfileAttributesEntry::SetName(const base::string16& name) { |
+ profile_info_cache_->SetNameOfProfileAtIndex(profile_index(), name); |
+} |
+ |
+void ProfileAttributesEntry::SetShortcutName(const base::string16& name) { |
+ profile_info_cache_->SetShortcutNameOfProfileAtIndex(profile_index(), name); |
+} |
+ |
+void ProfileAttributesEntry::SetIsOmitted(bool is_omitted) { |
+ profile_info_cache_->SetIsOmittedProfileAtIndex(profile_index(), is_omitted); |
+} |
+ |
+void ProfileAttributesEntry::SetSupervisedUserId(const std::string& id) { |
+ profile_info_cache_->SetSupervisedUserIdOfProfileAtIndex(profile_index(), id); |
+} |
+ |
+void ProfileAttributesEntry::SetLocalAuthCredentials(const std::string& auth) { |
+ profile_info_cache_->SetLocalAuthCredentialsOfProfileAtIndex( |
+ profile_index(), auth); |
+} |
+ |
+void ProfileAttributesEntry::SetPasswordChangeDetectionToken( |
+ const std::string& token) { |
+ profile_info_cache_->SetPasswordChangeDetectionTokenAtIndex( |
+ profile_index(), token); |
+} |
+ |
+void ProfileAttributesEntry::SetBackgroundStatus(bool running_background_apps) { |
+ profile_info_cache_->SetBackgroundStatusOfProfileAtIndex( |
+ profile_index(), running_background_apps); |
+} |
+ |
+void ProfileAttributesEntry::SetGAIAName(const base::string16& name) { |
+ profile_info_cache_->SetGAIANameOfProfileAtIndex(profile_index(), name); |
+} |
+ |
+void ProfileAttributesEntry::SetGAIAGivenName(const base::string16& name) { |
+ profile_info_cache_->SetGAIAGivenNameOfProfileAtIndex(profile_index(), name); |
+} |
+ |
+void ProfileAttributesEntry::SetGAIAPicture(const gfx::Image* image) { |
+ profile_info_cache_->SetGAIAPictureOfProfileAtIndex(profile_index(), image); |
+} |
+ |
+void ProfileAttributesEntry::SetIsUsingGAIAPicture(bool value) { |
+ profile_info_cache_->SetIsUsingGAIAPictureOfProfileAtIndex( |
+ profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetIsSigninRequired(bool value) { |
+ profile_info_cache_->SetProfileSigninRequiredAtIndex(profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetIsEphemeral(bool value) { |
+ profile_info_cache_->SetProfileIsEphemeralAtIndex(profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetIsUsingDefaultName(bool value) { |
+ profile_info_cache_->SetProfileIsUsingDefaultNameAtIndex( |
+ profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetIsUsingDefaultAvatar(bool value) { |
+ profile_info_cache_->SetProfileIsUsingDefaultAvatarAtIndex( |
+ profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetIsAuthError(bool value) { |
+ profile_info_cache_->SetProfileIsAuthErrorAtIndex(profile_index(), value); |
+} |
+ |
+void ProfileAttributesEntry::SetAvatarIconIndex(size_t icon_index) { |
+ profile_info_cache_->SetAvatarIconOfProfileAtIndex( |
+ profile_index(), icon_index); |
+} |
+ |
+void ProfileAttributesEntry::SetAuthInfo( |
+ const std::string& gaia_id, const base::string16& user_name) { |
+ profile_info_cache_->SetAuthInfoOfProfileAtIndex( |
+ profile_index(), gaia_id, user_name); |
+} |
+ |
+size_t ProfileAttributesEntry::profile_index() const { |
+ size_t index = profile_info_cache_->GetIndexOfProfileWithPath(profile_path_); |
+ DCHECK(index < profile_info_cache_->GetNumberOfProfiles()); |
+ return index; |
+} |