Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: chrome/browser/password_manager/password_store_mac.h

Issue 2132063002: Implement origin-based deletion for password manager's auto-signin bit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed PasswordStoreMac Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 password_manager::PasswordStoreChangeList RemoveLoginsByURLAndTimeImpl( 82 password_manager::PasswordStoreChangeList RemoveLoginsByURLAndTimeImpl(
83 const base::Callback<bool(const GURL&)>& url_filter, 83 const base::Callback<bool(const GURL&)>& url_filter,
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 RemoveLoginsCreatedBetweenImpl( 86 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl(
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 RemoveLoginsSyncedBetweenImpl( 89 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl(
90 base::Time delete_begin, 90 base::Time delete_begin,
91 base::Time delete_end) override; 91 base::Time delete_end) override;
92 password_manager::PasswordStoreChangeList DisableAutoSignInForAllLoginsImpl() 92 password_manager::PasswordStoreChangeList DisableAutoSignInForOriginsImpl(
93 override; 93 const base::Callback<bool(const GURL&)>& origin_filter) override;
94 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, 94 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin,
95 base::Time delete_end) override; 95 base::Time delete_end) override;
96 ScopedVector<autofill::PasswordForm> FillMatchingLogins( 96 ScopedVector<autofill::PasswordForm> FillMatchingLogins(
97 const autofill::PasswordForm& form) override; 97 const autofill::PasswordForm& form) override;
98 bool FillAutofillableLogins( 98 bool FillAutofillableLogins(
99 ScopedVector<autofill::PasswordForm>* forms) override; 99 ScopedVector<autofill::PasswordForm>* forms) override;
100 bool FillBlacklistLogins( 100 bool FillBlacklistLogins(
101 ScopedVector<autofill::PasswordForm>* forms) override; 101 ScopedVector<autofill::PasswordForm>* forms) override;
102 void AddSiteStatsImpl( 102 void AddSiteStatsImpl(
103 const password_manager::InteractionsStats& stats) override; 103 const password_manager::InteractionsStats& stats) override;
(...skipping 28 matching lines...) Expand all
132 std::unique_ptr<crypto::AppleKeychain> keychain_; 132 std::unique_ptr<crypto::AppleKeychain> keychain_;
133 133
134 // The login metadata SQL database. The caller is resonsible for initializing 134 // The login metadata SQL database. The caller is resonsible for initializing
135 // it. 135 // it.
136 password_manager::LoginDatabase* login_metadata_db_; 136 password_manager::LoginDatabase* login_metadata_db_;
137 137
138 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); 138 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac);
139 }; 139 };
140 140
141 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ 141 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698