Chromium Code Reviews| Index: components/password_manager/core/browser/login_database.cc |
| diff --git a/components/password_manager/core/browser/login_database.cc b/components/password_manager/core/browser/login_database.cc |
| index 0cc76ff353d7e289c6516e5d8be8550bb6b9061a..b1ff0bf390aea83002d77e5c2c5f975033b9b863 100644 |
| --- a/components/password_manager/core/browser/login_database.cc |
| +++ b/components/password_manager/core/browser/login_database.cc |
| @@ -1063,8 +1063,10 @@ LoginDatabase::EncryptionResult LoginDatabase::InitPasswordFormFromStatement( |
| base::string16 decrypted_password; |
| EncryptionResult encryption_result = |
| DecryptedString(encrypted_password, &decrypted_password); |
| - if (encryption_result != ENCRYPTION_RESULT_SUCCESS) |
| + if (encryption_result != ENCRYPTION_RESULT_SUCCESS) { |
| + VLOG(0) << "Password decryption failed"; |
|
vasilii
2016/06/27 13:54:18
Print encryption_result?
vabr (Chromium)
2016/06/27 14:36:39
Good point, done.
|
| return encryption_result; |
| + } |
| std::string tmp = s.ColumnString(COLUMN_ORIGIN_URL); |
| form->origin = GURL(tmp); |