| Index: components/password_manager/core/browser/password_store_sync.h
|
| diff --git a/components/password_manager/core/browser/password_store_sync.h b/components/password_manager/core/browser/password_store_sync.h
|
| index 731d338abc4d5fa3895f63b67ce9c698f483ba01..296e71167fe9034d14ce7fb6c7d3cf980a1be219 100644
|
| --- a/components/password_manager/core/browser/password_store_sync.h
|
| +++ b/components/password_manager/core/browser/password_store_sync.h
|
| @@ -28,15 +28,15 @@ class PasswordStoreSync {
|
| WARN_UNUSED_RESULT = 0;
|
|
|
| // Synchronous implementation to add the given login.
|
| - virtual PasswordStoreChangeList AddLoginImpl(
|
| + virtual PasswordStoreChangeList AddLoginSync(
|
| const autofill::PasswordForm& form) = 0;
|
|
|
| // Synchronous implementation to update the given login.
|
| - virtual PasswordStoreChangeList UpdateLoginImpl(
|
| + virtual PasswordStoreChangeList UpdateLoginSync(
|
| const autofill::PasswordForm& form) = 0;
|
|
|
| // Synchronous implementation to remove the given login.
|
| - virtual PasswordStoreChangeList RemoveLoginImpl(
|
| + virtual PasswordStoreChangeList RemoveLoginSync(
|
| const autofill::PasswordForm& form) = 0;
|
|
|
| // Notifies observers that password store data may have been changed.
|
|
|