Chromium Code Reviews

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.cc

Issue 4134013: [cros] Possible fix for crash - check whether LoginPerformer instance needs to be recreated. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index 2e2bb5aa35d0a6850f83dcabe1c3301addc9223f..6738f8abd490c93d3cac78deae5fed0fa98745f6 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -560,7 +560,7 @@ void ExistingUserController::OnPasswordChangeDetected(
const GaiaAuthConsumer::ClientLoginResult& credentials) {
// When signing in as a "New user" always remove old cryptohome.
if (selected_view_index_ == controllers_.size() - 1) {
- login_performer_->ResyncEncryptedData();
+ ResyncEncryptedData();
return;
}
@@ -618,11 +618,15 @@ void ExistingUserController::OnCaptchaEntered(const std::string& captcha) {
void ExistingUserController::RecoverEncryptedData(
const std::string& old_password) {
- login_performer_->RecoverEncryptedData(old_password);
+ // LoginPerformer instance has state of the user so it should exist.
+ if (login_performer_.get())
+ login_performer_->RecoverEncryptedData(old_password);
}
void ExistingUserController::ResyncEncryptedData() {
- login_performer_->ResyncEncryptedData();
+ // LoginPerformer instance has state of the user so it should exist.
+ if (login_performer_.get())
+ login_performer_->ResyncEncryptedData();
}
} // namespace chromeos
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine