Home | History | Annotate | Download | only in login

Lines Matching refs:image

55 // Stores path to the image in local state. Runs on UI thread.
62 DVLOG(1) << "Saving path to user image in Local State.";
66 // Saves image to file with specified path. Runs on FILE thread.
67 // Posts task for saving image path to local state on UI thread.
68 void SaveImageToFile(const SkBitmap& image,
73 if (!gfx::PNGCodec::EncodeBGRASkBitmap(image, true, &encoded_image)) {
74 LOG(ERROR) << "Failed to PNG encode the image.";
81 LOG(ERROR) << "Failed to save image to file.";
92 // Deletes user's image file. Runs on FILE thread.
96 LOG(ERROR) << "Failed to remove user image.";
272 user_images_[email] = user.image();
274 // Insert the default image so we don't send another request if
276 user_images_[email] = user.image();
414 void UserManager::SetLoggedInUserImage(const SkBitmap& image) {
417 OnImageLoaded(logged_in_user_.email(), image, false);
427 const SkBitmap& image) {
430 DVLOG(1) << "Saving user image to " << image_path.value();
436 image, image_path, username));
457 // there're more users with red image, we won't add red one for sure.
509 const SkBitmap& image,
511 DVLOG(1) << "Loaded image for " << username;
512 user_images_[username] = image;
515 user.set_image(image);
517 logged_in_user_.set_image(image);
519 SaveUserImage(username, image);