| Index: chrome/browser/password_manager/password_store_x_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| index 61c3c2f90fe746da020d3828caa1e20c2f5fd573..780c80d14c5ec506700f8ff6b23299e1823c8e73 100644
|
| --- a/chrome/browser/password_manager/password_store_x_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| @@ -619,16 +619,16 @@ TEST_P(PasswordStoreXTest, NativeMigration) {
|
| for (VectorOfForms::iterator it = expected_autofillable.begin();
|
| it != expected_autofillable.end(); ++it) {
|
| BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
|
| - base::IgnoreReturn<bool>(base::Bind(
|
| - &LoginDatabase::AddLogin,
|
| - base::Unretained(login_db), **it)));
|
| + base::Bind(
|
| + base::IgnoreResult(&LoginDatabase::AddLogin),
|
| + base::Unretained(login_db), **it));
|
| }
|
| for (VectorOfForms::iterator it = expected_blacklisted.begin();
|
| it != expected_blacklisted.end(); ++it) {
|
| BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
|
| - base::IgnoreReturn<bool>(base::Bind(
|
| - &LoginDatabase::AddLogin,
|
| - base::Unretained(login_db), **it)));
|
| + base::Bind(
|
| + base::IgnoreResult(&LoginDatabase::AddLogin),
|
| + base::Unretained(login_db), **it));
|
| }
|
|
|
| // Schedule another task on the DB thread to notify us that it's safe to
|
|
|