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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 base::Time delete_begin, | 88 base::Time delete_begin, |
89 base::Time delete_end) override; | 89 base::Time delete_end) override; |
90 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( | 90 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl( |
91 const base::Callback<bool(const GURL&)>& origin_filter) override; | 91 const base::Callback<bool(const GURL&)>& origin_filter) override; |
92 bool RemoveStatisticsByOriginAndTimeImpl( | 92 bool RemoveStatisticsByOriginAndTimeImpl( |
93 const base::Callback<bool(const GURL&)>& origin_filter, | 93 const base::Callback<bool(const GURL&)>& origin_filter, |
94 base::Time delete_begin, | 94 base::Time delete_begin, |
95 base::Time delete_end) override; | 95 base::Time delete_end) override; |
96 std::vector<std::unique_ptr<autofill::PasswordForm>> FillMatchingLogins( | 96 std::vector<std::unique_ptr<autofill::PasswordForm>> FillMatchingLogins( |
97 const FormDigest& form) override; | 97 const FormDigest& form) override; |
| 98 std::vector<std::unique_ptr<autofill::PasswordForm>> |
| 99 FillLoginsForSameOrganizationName(const std::string& signon_realm) override; |
98 bool FillAutofillableLogins( | 100 bool FillAutofillableLogins( |
99 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; | 101 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; |
100 bool FillBlacklistLogins( | 102 bool FillBlacklistLogins( |
101 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; | 103 std::vector<std::unique_ptr<autofill::PasswordForm>>* forms) override; |
102 void AddSiteStatsImpl( | 104 void AddSiteStatsImpl( |
103 const password_manager::InteractionsStats& stats) override; | 105 const password_manager::InteractionsStats& stats) override; |
104 void RemoveSiteStatsImpl(const GURL& origin_domain) override; | 106 void RemoveSiteStatsImpl(const GURL& origin_domain) override; |
105 std::vector<password_manager::InteractionsStats> GetAllSiteStatsImpl() | 107 std::vector<password_manager::InteractionsStats> GetAllSiteStatsImpl() |
106 override; | 108 override; |
107 std::vector<password_manager::InteractionsStats> GetSiteStatsImpl( | 109 std::vector<password_manager::InteractionsStats> GetSiteStatsImpl( |
(...skipping 20 matching lines...) Expand all Loading... |
128 // them. If this is the case then Shutdown() flushes the tasks after stopping | 130 // them. If this is the case then Shutdown() flushes the tasks after stopping |
129 // the background thread. | 131 // the background thread. |
130 // After InitOnBackgroundThread is run once, the queue may not be modified on | 132 // After InitOnBackgroundThread is run once, the queue may not be modified on |
131 // the background thread any more. | 133 // the background thread any more. |
132 std::vector<base::Closure> pending_ui_tasks_; | 134 std::vector<base::Closure> pending_ui_tasks_; |
133 | 135 |
134 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); | 136 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); |
135 }; | 137 }; |
136 | 138 |
137 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ | 139 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ |
OLD | NEW |