| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 private: | 71 private: |
| 72 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; | 72 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; |
| 73 void ReportMetricsImpl(const std::string& sync_username, | 73 void ReportMetricsImpl(const std::string& sync_username, |
| 74 bool custom_passphrase_sync_enabled) override; | 74 bool custom_passphrase_sync_enabled) override; |
| 75 password_manager::PasswordStoreChangeList AddLoginImpl( | 75 password_manager::PasswordStoreChangeList AddLoginImpl( |
| 76 const autofill::PasswordForm& form) override; | 76 const autofill::PasswordForm& form) override; |
| 77 password_manager::PasswordStoreChangeList UpdateLoginImpl( | 77 password_manager::PasswordStoreChangeList UpdateLoginImpl( |
| 78 const autofill::PasswordForm& form) override; | 78 const autofill::PasswordForm& form) override; |
| 79 password_manager::PasswordStoreChangeList RemoveLoginImpl( | 79 password_manager::PasswordStoreChangeList RemoveLoginImpl( |
| 80 const autofill::PasswordForm& form) override; | 80 const autofill::PasswordForm& form) override; |
| 81 password_manager::PasswordStoreChangeList RemoveLoginsByOriginAndTimeImpl( |
| 82 const url::Origin& origin, |
| 83 base::Time delete_begin, |
| 84 base::Time delete_end) override; |
| 81 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( | 85 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( |
| 82 base::Time delete_begin, | 86 base::Time delete_begin, |
| 83 base::Time delete_end) override; | 87 base::Time delete_end) override; |
| 84 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( | 88 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( |
| 85 base::Time delete_begin, | 89 base::Time delete_begin, |
| 86 base::Time delete_end) override; | 90 base::Time delete_end) override; |
| 87 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, | 91 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, |
| 88 base::Time delete_end) override; | 92 base::Time delete_end) override; |
| 89 ScopedVector<autofill::PasswordForm> FillMatchingLogins( | 93 ScopedVector<autofill::PasswordForm> FillMatchingLogins( |
| 90 const autofill::PasswordForm& form, | 94 const autofill::PasswordForm& form, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 scoped_ptr<crypto::AppleKeychain> keychain_; | 130 scoped_ptr<crypto::AppleKeychain> keychain_; |
| 127 | 131 |
| 128 // The login metadata SQL database. The caller is resonsible for initializing | 132 // The login metadata SQL database. The caller is resonsible for initializing |
| 129 // it. | 133 // it. |
| 130 password_manager::LoginDatabase* login_metadata_db_; | 134 password_manager::LoginDatabase* login_metadata_db_; |
| 131 | 135 |
| 132 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); | 136 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); |
| 133 }; | 137 }; |
| 134 | 138 |
| 135 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 139 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |