| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 base::Time delete_begin, | 87 base::Time delete_begin, |
| 88 base::Time delete_end) override; | 88 base::Time delete_end) override; |
| 89 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( | 89 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( |
| 90 base::Time delete_begin, | 90 base::Time delete_begin, |
| 91 base::Time delete_end) override; | 91 base::Time delete_end) override; |
| 92 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( | 92 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( |
| 93 const base::Callback<bool(const GURL&)>& origin_filter) override; | 93 const base::Callback<bool(const GURL&)>& origin_filter) override; |
| 94 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, | 94 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, |
| 95 base::Time delete_end) override; | 95 base::Time delete_end) override; |
| 96 ScopedVector<autofill::PasswordForm> FillMatchingLogins( | 96 ScopedVector<autofill::PasswordForm> FillMatchingLogins( |
| 97 const autofill::PasswordForm& form) override; | 97 const FormDigest& form) override; |
| 98 bool FillAutofillableLogins( | 98 bool FillAutofillableLogins( |
| 99 ScopedVector<autofill::PasswordForm>* forms) override; | 99 ScopedVector<autofill::PasswordForm>* forms) override; |
| 100 bool FillBlacklistLogins( | 100 bool FillBlacklistLogins( |
| 101 ScopedVector<autofill::PasswordForm>* forms) override; | 101 ScopedVector<autofill::PasswordForm>* forms) override; |
| 102 void AddSiteStatsImpl( | 102 void AddSiteStatsImpl( |
| 103 const password_manager::InteractionsStats& stats) override; | 103 const password_manager::InteractionsStats& stats) override; |
| 104 void RemoveSiteStatsImpl(const GURL& origin_domain) override; | 104 void RemoveSiteStatsImpl(const GURL& origin_domain) override; |
| 105 std::vector<std::unique_ptr<password_manager::InteractionsStats>> | 105 std::vector<std::unique_ptr<password_manager::InteractionsStats>> |
| 106 GetSiteStatsImpl(const GURL& origin_domain) override; | 106 GetSiteStatsImpl(const GURL& origin_domain) override; |
| 107 | 107 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 132 std::unique_ptr<crypto::AppleKeychain> keychain_; | 132 std::unique_ptr<crypto::AppleKeychain> keychain_; |
| 133 | 133 |
| 134 // The login metadata SQL database. The caller is resonsible for initializing | 134 // The login metadata SQL database. The caller is resonsible for initializing |
| 135 // it. | 135 // it. |
| 136 password_manager::LoginDatabase* login_metadata_db_; | 136 password_manager::LoginDatabase* login_metadata_db_; |
| 137 | 137 |
| 138 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); | 138 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 141 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |