Home | History | Annotate | Download | only in login

Lines Matching refs:email

112       g_user_manager.Get().logged_in_user().email());
151 // Value of owner email is still not verified.
216 const std::string& user_email = email();
256 std::string email;
257 if ((*it)->GetAsString(&email)) {
259 user.set_email(email);
260 UserImages::const_iterator image_it = user_images_.find(email);
264 prefs_images->GetStringWithoutPathExpansion(email, &image_path)) {
272 user_images_[email] = user.image();
276 user_images_[email] = user.image();
277 image_loader_->Start(email, image_path, false);
297 void UserManager::UserLoggedIn(const std::string& email) {
298 if (email == kGuestUser) {
303 if (!IsKnownUser(email)) {
318 logged_in_user_.set_email(email);
321 prefs_users_update->Append(Value::CreateStringValue(email));
325 std::string user_email = it->email();
327 if (email != user_email) {
336 SetDefaultUserImage(email);
339 void UserManager::RemoveUser(const std::string& email,
354 user_found = (email == users[i].email());
359 new RemoveAttempt(email, delegate);
362 void UserManager::RemoveUserFromList(const std::string& email) {
374 std::string user_email = it->email();
376 if (email != user_email)
382 prefs_images_update->GetStringWithoutPathExpansion(email, &image_path_string);
383 prefs_images_update->RemoveWithoutPathExpansion(email, NULL);
398 bool UserManager::IsKnownUser(const std::string& email) {
403 if (it->email() == email)
415 if (logged_in_user_.email().empty())
417 OnImageLoaded(logged_in_user_.email(), image, false);
421 if (logged_in_user_.email().empty())
423 image_loader_->Start(logged_in_user_.email(), path.value(), true);
464 std::string email;
465 if ((*it)->GetAsString(&email)) {
468 if (prefs_images->GetStringWithoutPathExpansion(email, &image_path) &&
516 if (logged_in_user_.email() == username)
527 return logged_in_user().email() == kGuestUser;