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

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

Issue 335893002: Support to remove passwords by date_synced timestamp. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: vabr's comments Created 6 years, 6 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 | Annotate | Revision Log
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 <vector> 8 #include <vector>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 virtual void ReportMetricsImpl() OVERRIDE; 53 virtual void ReportMetricsImpl() OVERRIDE;
54 virtual password_manager::PasswordStoreChangeList AddLoginImpl( 54 virtual password_manager::PasswordStoreChangeList AddLoginImpl(
55 const autofill::PasswordForm& form) OVERRIDE; 55 const autofill::PasswordForm& form) OVERRIDE;
56 virtual password_manager::PasswordStoreChangeList UpdateLoginImpl( 56 virtual password_manager::PasswordStoreChangeList UpdateLoginImpl(
57 const autofill::PasswordForm& form) OVERRIDE; 57 const autofill::PasswordForm& form) OVERRIDE;
58 virtual password_manager::PasswordStoreChangeList RemoveLoginImpl( 58 virtual password_manager::PasswordStoreChangeList RemoveLoginImpl(
59 const autofill::PasswordForm& form) OVERRIDE; 59 const autofill::PasswordForm& form) OVERRIDE;
60 virtual password_manager::PasswordStoreChangeList 60 virtual password_manager::PasswordStoreChangeList
61 RemoveLoginsCreatedBetweenImpl(const base::Time& delete_begin, 61 RemoveLoginsCreatedBetweenImpl(const base::Time& delete_begin,
62 const base::Time& delete_end) OVERRIDE; 62 const base::Time& delete_end) OVERRIDE;
63 virtual password_manager::PasswordStoreChangeList
64 RemoveLoginsSyncedBetweenImpl(base::Time delete_begin,
65 base::Time delete_end) OVERRIDE;
63 virtual void GetLoginsImpl( 66 virtual void GetLoginsImpl(
64 const autofill::PasswordForm& form, 67 const autofill::PasswordForm& form,
65 AuthorizationPromptPolicy prompt_policy, 68 AuthorizationPromptPolicy prompt_policy,
66 const ConsumerCallbackRunner& callback_runner) OVERRIDE; 69 const ConsumerCallbackRunner& callback_runner) OVERRIDE;
67 virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE; 70 virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE;
68 virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE; 71 virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE;
69 virtual bool FillAutofillableLogins( 72 virtual bool FillAutofillableLogins(
70 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 73 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
71 virtual bool FillBlacklistLogins( 74 virtual bool FillBlacklistLogins(
72 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; 75 std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
(...skipping 24 matching lines...) Expand all
97 scoped_ptr<crypto::AppleKeychain> keychain_; 100 scoped_ptr<crypto::AppleKeychain> keychain_;
98 scoped_ptr<password_manager::LoginDatabase> login_metadata_db_; 101 scoped_ptr<password_manager::LoginDatabase> login_metadata_db_;
99 102
100 // Thread that the synchronous methods are run on. 103 // Thread that the synchronous methods are run on.
101 scoped_ptr<base::Thread> thread_; 104 scoped_ptr<base::Thread> thread_;
102 105
103 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); 106 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac);
104 }; 107 };
105 108
106 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ 109 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698