| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PROXY_MAC_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 base::Time delete_end) override; | 82 base::Time delete_end) override; |
| 83 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( | 83 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( |
| 84 base::Time delete_begin, | 84 base::Time delete_begin, |
| 85 base::Time delete_end) override; | 85 base::Time delete_end) override; |
| 86 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( | 86 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( |
| 87 base::Time delete_begin, | 87 base::Time delete_begin, |
| 88 base::Time delete_end) override; | 88 base::Time delete_end) override; |
| 89 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, | 89 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, |
| 90 base::Time delete_end) override; | 90 base::Time delete_end) override; |
| 91 ScopedVector<autofill::PasswordForm> FillMatchingLogins( | 91 ScopedVector<autofill::PasswordForm> FillMatchingLogins( |
| 92 const autofill::PasswordForm& form, | 92 const autofill::PasswordForm& form) override; |
| 93 AuthorizationPromptPolicy prompt_policy) override; | |
| 94 bool FillAutofillableLogins( | 93 bool FillAutofillableLogins( |
| 95 ScopedVector<autofill::PasswordForm>* forms) override; | 94 ScopedVector<autofill::PasswordForm>* forms) override; |
| 96 bool FillBlacklistLogins( | 95 bool FillBlacklistLogins( |
| 97 ScopedVector<autofill::PasswordForm>* forms) override; | 96 ScopedVector<autofill::PasswordForm>* forms) override; |
| 98 void AddSiteStatsImpl( | 97 void AddSiteStatsImpl( |
| 99 const password_manager::InteractionsStats& stats) override; | 98 const password_manager::InteractionsStats& stats) override; |
| 100 void RemoveSiteStatsImpl(const GURL& origin_domain) override; | 99 void RemoveSiteStatsImpl(const GURL& origin_domain) override; |
| 101 std::vector<scoped_ptr<password_manager::InteractionsStats>> GetSiteStatsImpl( | 100 std::vector<scoped_ptr<password_manager::InteractionsStats>> GetSiteStatsImpl( |
| 102 const GURL& origin_domain) override; | 101 const GURL& origin_domain) override; |
| 103 | 102 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 120 // them. If this is the case then Shutdown() flushes the tasks after stopping | 119 // them. If this is the case then Shutdown() flushes the tasks after stopping |
| 121 // the background thread. | 120 // the background thread. |
| 122 // After InitOnBackgroundThread is run once, the queue may not be modified on | 121 // After InitOnBackgroundThread is run once, the queue may not be modified on |
| 123 // the background thread any more. | 122 // the background thread any more. |
| 124 std::vector<base::Closure> pending_ui_tasks_; | 123 std::vector<base::Closure> pending_ui_tasks_; |
| 125 | 124 |
| 126 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); | 125 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); |
| 127 }; | 126 }; |
| 128 | 127 |
| 129 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ | 128 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ |
| OLD | NEW |