| Index: components/password_manager/core/browser/login_database.h
|
| diff --git a/components/password_manager/core/browser/login_database.h b/components/password_manager/core/browser/login_database.h
|
| index 8fcf8469b17e4bfe64a0db0dcd480a4648fcfc9b..bfcf495ec592e4c248e230c89eb737335ea7ec82 100644
|
| --- a/components/password_manager/core/browser/login_database.h
|
| +++ b/components/password_manager/core/browser/login_database.h
|
| @@ -54,6 +54,12 @@ class LoginDatabase {
|
| bool RemoveLoginsCreatedBetween(const base::Time delete_begin,
|
| const base::Time delete_end);
|
|
|
| + // Removes all logins synced from |delete_begin| onwards (inclusive) and
|
| + // before |delete_end|. You may use a null Time value to do an unbounded
|
| + // delete in either direction.
|
| + bool RemoveLoginsSyncedBetween(base::Time delete_begin,
|
| + base::Time delete_end);
|
| +
|
| // Loads a list of matching password forms into the specified vector |forms|.
|
| // The list will contain all possibly relevant entries to the observed |form|,
|
| // including blacklisted matches.
|
| @@ -64,8 +70,16 @@ class LoginDatabase {
|
| // You may use a null Time value to do an unbounded search in either
|
| // direction.
|
| bool GetLoginsCreatedBetween(
|
| - const base::Time begin,
|
| - const base::Time end,
|
| + base::Time begin,
|
| + base::Time end,
|
| + std::vector<autofill::PasswordForm*>* forms) const;
|
| +
|
| + // Loads all logins synced from |begin| onwards (inclusive) and before |end|.
|
| + // You may use a null Time value to do an unbounded search in either
|
| + // direction.
|
| + bool GetLoginsSyncedBetween(
|
| + base::Time begin,
|
| + base::Time end,
|
| std::vector<autofill::PasswordForm*>* forms) const;
|
|
|
| // Loads the complete list of autofillable password forms (i.e., not blacklist
|
|
|