| 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 780c80d14c5ec506700f8ff6b23299e1823c8e73..f6010f932217ae461c654a73d3b31ce7b6d3d7df 100644
|
| --- a/chrome/browser/password_manager/password_store_x_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| @@ -434,7 +434,7 @@ TEST_P(PasswordStoreXTest, WDSMigration) {
|
| STLDeleteElements(&expected_blacklisted);
|
|
|
| // Public in PasswordStore, protected in PasswordStoreX.
|
| - static_cast<PasswordStore*>(store)->Shutdown();
|
| + static_cast<PasswordStore*>(store)->ShutdownOnUIThread();
|
| }
|
|
|
| TEST_P(PasswordStoreXTest, WDSMigrationAlreadyDone) {
|
| @@ -501,7 +501,7 @@ TEST_P(PasswordStoreXTest, WDSMigrationAlreadyDone) {
|
| STLDeleteElements(&unexpected_autofillable);
|
|
|
| // Public in PasswordStore, protected in PasswordStoreX.
|
| - static_cast<PasswordStore*>(store)->Shutdown();
|
| + static_cast<PasswordStore*>(store)->ShutdownOnUIThread();
|
| }
|
|
|
| TEST_P(PasswordStoreXTest, Notifications) {
|
| @@ -597,7 +597,7 @@ TEST_P(PasswordStoreXTest, Notifications) {
|
| done.Wait();
|
|
|
| // Public in PasswordStore, protected in PasswordStoreX.
|
| - static_cast<PasswordStore*>(store)->Shutdown();
|
| + static_cast<PasswordStore*>(store)->ShutdownOnUIThread();
|
| }
|
|
|
| TEST_P(PasswordStoreXTest, NativeMigration) {
|
| @@ -740,7 +740,7 @@ TEST_P(PasswordStoreXTest, NativeMigration) {
|
| STLDeleteElements(&expected_blacklisted);
|
|
|
| // Public in PasswordStore, protected in PasswordStoreX.
|
| - static_cast<PasswordStore*>(store)->Shutdown();
|
| + static_cast<PasswordStore*>(store)->ShutdownOnUIThread();
|
| }
|
|
|
| INSTANTIATE_TEST_CASE_P(NoBackend,
|
|
|