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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 password_manager::PasswordStoreChangeList RemoveLoginsByURLAndTimeImpl( | 79 password_manager::PasswordStoreChangeList RemoveLoginsByURLAndTimeImpl( |
80 const base::Callback<bool(const GURL&)>& url_filter, | 80 const base::Callback<bool(const GURL&)>& url_filter, |
81 base::Time delete_begin, | 81 base::Time delete_begin, |
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 password_manager::PasswordStoreChangeList DisableAutoSignInForAllLoginsImpl() | 89 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( |
90 override; | 90 const base::Callback<bool(const GURL&)>& origin_filter) override; |
91 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, | 91 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, |
92 base::Time delete_end) override; | 92 base::Time delete_end) override; |
93 ScopedVector<autofill::PasswordForm> FillMatchingLogins( | 93 ScopedVector<autofill::PasswordForm> FillMatchingLogins( |
94 const autofill::PasswordForm& form) override; | 94 const autofill::PasswordForm& form) override; |
95 bool FillAutofillableLogins( | 95 bool FillAutofillableLogins( |
96 ScopedVector<autofill::PasswordForm>* forms) override; | 96 ScopedVector<autofill::PasswordForm>* forms) override; |
97 bool FillBlacklistLogins( | 97 bool FillBlacklistLogins( |
98 ScopedVector<autofill::PasswordForm>* forms) override; | 98 ScopedVector<autofill::PasswordForm>* forms) override; |
99 void AddSiteStatsImpl( | 99 void AddSiteStatsImpl( |
100 const password_manager::InteractionsStats& stats) override; | 100 const password_manager::InteractionsStats& stats) override; |
(...skipping 20 matching lines...) Expand all Loading... |
121 // them. If this is the case then Shutdown() flushes the tasks after stopping | 121 // them. If this is the case then Shutdown() flushes the tasks after stopping |
122 // the background thread. | 122 // the background thread. |
123 // After InitOnBackgroundThread is run once, the queue may not be modified on | 123 // After InitOnBackgroundThread is run once, the queue may not be modified on |
124 // the background thread any more. | 124 // the background thread any more. |
125 std::vector<base::Closure> pending_ui_tasks_; | 125 std::vector<base::Closure> pending_ui_tasks_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); | 127 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); |
128 }; | 128 }; |
129 | 129 |
130 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ | 130 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ |
OLD | NEW |