| Index: components/password_manager/core/browser/password_store.h
|
| diff --git a/components/password_manager/core/browser/password_store.h b/components/password_manager/core/browser/password_store.h
|
| index 6c2f104e3264d528b78bb60a01ed341280e37e94..40ecd0739b66edd9536e30bbcad0f1495e4b6770 100644
|
| --- a/components/password_manager/core/browser/password_store.h
|
| +++ b/components/password_manager/core/browser/password_store.h
|
| @@ -261,6 +261,9 @@ class PasswordStore : protected PasswordStoreSync,
|
|
|
| // Saves a hash of |password| for password reuse checking.
|
| void SaveSyncPasswordHash(const base::string16& password);
|
| +
|
| + // Clears the saved sync password hash.
|
| + void ClearSyncPasswordHash();
|
| #endif
|
|
|
| protected:
|
| @@ -430,6 +433,9 @@ class PasswordStore : protected PasswordStoreSync,
|
|
|
| // Synchronous implementation of SaveSyncPasswordHash().
|
| void SaveSyncPasswordHashImpl(const base::string16& password);
|
| +
|
| + // Synchronous implementation of ClearSyncPasswordHash().
|
| + void ClearSyncPasswordHashImpl();
|
| #endif
|
|
|
| // TaskRunner for tasks that run on the main thread (usually the UI thread).
|
|
|