| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 base::Time delete_begin, | 101 base::Time delete_begin, |
| 102 base::Time delete_end) override; | 102 base::Time delete_end) override; |
| 103 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( | 103 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( |
| 104 const base::Callback<bool(const GURL&)>& origin_filter) override; | 104 const base::Callback<bool(const GURL&)>& origin_filter) override; |
| 105 bool RemoveStatisticsByOriginAndTimeImpl( | 105 bool RemoveStatisticsByOriginAndTimeImpl( |
| 106 const base::Callback<bool(const GURL&)>& origin_filter, | 106 const base::Callback<bool(const GURL&)>& origin_filter, |
| 107 base::Time delete_begin, | 107 base::Time delete_begin, |
| 108 base::Time delete_end) override; | 108 base::Time delete_end) override; |
| 109 std::vector<std::unique_ptr<autofill::PasswordForm>> FillMatchingLogins( | 109 std::vector<std::unique_ptr<autofill::PasswordForm>> FillMatchingLogins( |
| 110 const FormDigest& form) override; | 110 const FormDigest& form) override; |
| 111 std::vector<std::unique_ptr<autofill::PasswordForm>> |
| 112 FillLoginsForSameOrganizationName(const std::string& signon_realm) override; |
| 111 bool FillAutofillableLogins( | 113 bool FillAutofillableLogins( |
| 112 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; | 114 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; |
| 113 bool FillBlacklistLogins( | 115 bool FillBlacklistLogins( |
| 114 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; | 116 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; |
| 115 void AddSiteStatsImpl( | 117 void AddSiteStatsImpl( |
| 116 const password_manager::InteractionsStats& stats) override; | 118 const password_manager::InteractionsStats& stats) override; |
| 117 void RemoveSiteStatsImpl(const GURL& origin_domain) override; | 119 void RemoveSiteStatsImpl(const GURL& origin_domain) override; |
| 118 std::vector<password_manager::InteractionsStats> GetAllSiteStatsImpl() | 120 std::vector<password_manager::InteractionsStats> GetAllSiteStatsImpl() |
| 119 override; | 121 override; |
| 120 std::vector<password_manager::InteractionsStats> GetSiteStatsImpl( | 122 std::vector<password_manager::InteractionsStats> GetSiteStatsImpl( |
| (...skipping 28 matching lines...) Expand all Loading... |
| 149 std::unique_ptr<crypto::AppleKeychain> keychain_; | 151 std::unique_ptr<crypto::AppleKeychain> keychain_; |
| 150 | 152 |
| 151 // The login metadata SQL database. The caller is resonsible for initializing | 153 // The login metadata SQL database. The caller is resonsible for initializing |
| 152 // it. | 154 // it. |
| 153 password_manager::LoginDatabase* login_metadata_db_; | 155 password_manager::LoginDatabase* login_metadata_db_; |
| 154 | 156 |
| 155 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); | 157 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); |
| 156 }; | 158 }; |
| 157 | 159 |
| 158 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 160 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |