| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 base::Time delete_end) override; | 85 base::Time delete_end) override; |
| 86 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( | 86 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( |
| 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 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, | 92 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, |
| 93 base::Time delete_end) override; | 93 base::Time delete_end) override; |
| 94 ScopedVector<autofill::PasswordForm> FillMatchingLogins( | 94 ScopedVector<autofill::PasswordForm> FillMatchingLogins( |
| 95 const autofill::PasswordForm& form, | 95 const autofill::PasswordForm& form) override; |
| 96 AuthorizationPromptPolicy prompt_policy) override; | |
| 97 bool FillAutofillableLogins( | 96 bool FillAutofillableLogins( |
| 98 ScopedVector<autofill::PasswordForm>* forms) override; | 97 ScopedVector<autofill::PasswordForm>* forms) override; |
| 99 bool FillBlacklistLogins( | 98 bool FillBlacklistLogins( |
| 100 ScopedVector<autofill::PasswordForm>* forms) override; | 99 ScopedVector<autofill::PasswordForm>* forms) override; |
| 101 void AddSiteStatsImpl( | 100 void AddSiteStatsImpl( |
| 102 const password_manager::InteractionsStats& stats) override; | 101 const password_manager::InteractionsStats& stats) override; |
| 103 void RemoveSiteStatsImpl(const GURL& origin_domain) override; | 102 void RemoveSiteStatsImpl(const GURL& origin_domain) override; |
| 104 std::vector<scoped_ptr<password_manager::InteractionsStats>> GetSiteStatsImpl( | 103 std::vector<scoped_ptr<password_manager::InteractionsStats>> GetSiteStatsImpl( |
| 105 const GURL& origin_domain) override; | 104 const GURL& origin_domain) override; |
| 106 | 105 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 131 scoped_ptr<crypto::AppleKeychain> keychain_; | 130 scoped_ptr<crypto::AppleKeychain> keychain_; |
| 132 | 131 |
| 133 // The login metadata SQL database. The caller is resonsible for initializing | 132 // The login metadata SQL database. The caller is resonsible for initializing |
| 134 // it. | 133 // it. |
| 135 password_manager::LoginDatabase* login_metadata_db_; | 134 password_manager::LoginDatabase* login_metadata_db_; |
| 136 | 135 |
| 137 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); | 136 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); |
| 138 }; | 137 }; |
| 139 | 138 |
| 140 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 139 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |