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

Unified Diff: chrome/browser/chromeos/login/screens/user_image_screen.cc

Issue 2785593002: Revert of Delete "Google Profile photo" for the Active Directory (patchset #2 id:20001 of https://c… (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_user_image.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/screens/user_image_screen.cc
diff --git a/chrome/browser/chromeos/login/screens/user_image_screen.cc b/chrome/browser/chromeos/login/screens/user_image_screen.cc
index 4e4dae9f864221148c2c97283a58d652804586d8..750cee1dc9959e3d5a7a9ded6b0db4a8489a597d 100644
--- a/chrome/browser/chromeos/login/screens/user_image_screen.cc
+++ b/chrome/browser/chromeos/login/screens/user_image_screen.cc
@@ -52,7 +52,6 @@ constexpr const char kContextKeyIsCameraPresent[] = "isCameraPresent";
constexpr const char kContextKeyProfilePictureDataURL[] =
"profilePictureDataURL";
constexpr const char kContextKeySelectedImageURL[] = "selectedImageURL";
-constexpr const char kContextKeyHasGaiaAccount[] = "hasGaiaAccount";
// Time histogram suffix for profile image download.
const char kProfileDownloadReason[] = "OOBE";
@@ -216,14 +215,8 @@ void UserImageScreen::Show() {
kContextKeySelectedImageURL,
default_user_image::GetDefaultImageUrl(selected_image_));
- const user_manager::User* user = GetUser();
- // Fetch profile image for GAIA accounts.
- if (user && user->HasGaiaAccount()) {
- GetContextEditor().SetBoolean(kContextKeyHasGaiaAccount, true);
- GetUserImageManager()->DownloadProfileImage(kProfileDownloadReason);
- } else {
- GetContextEditor().SetBoolean(kContextKeyHasGaiaAccount, false);
- }
+ // Start fetching the profile image.
+ GetUserImageManager()->DownloadProfileImage(kProfileDownloadReason);
}
void UserImageScreen::Hide() {
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_user_image.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698