OLD | NEW |
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 26 matching lines...) Expand all Loading... |
37 | 37 |
38 virtual void ShutdownOnUIThread() OVERRIDE; | 38 virtual void ShutdownOnUIThread() OVERRIDE; |
39 | 39 |
40 protected: | 40 protected: |
41 virtual ~PasswordStoreMac(); | 41 virtual ~PasswordStoreMac(); |
42 | 42 |
43 virtual bool ScheduleTask(const base::Closure& task) OVERRIDE; | 43 virtual bool ScheduleTask(const base::Closure& task) OVERRIDE; |
44 | 44 |
45 private: | 45 private: |
46 virtual void ReportMetricsImpl() OVERRIDE; | 46 virtual void ReportMetricsImpl() OVERRIDE; |
47 virtual void AddLoginImpl(const content::PasswordForm& form) OVERRIDE; | 47 virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE; |
48 virtual void UpdateLoginImpl( | 48 virtual void UpdateLoginImpl( |
49 const content::PasswordForm& form) OVERRIDE; | 49 const autofill::PasswordForm& form) OVERRIDE; |
50 virtual void RemoveLoginImpl( | 50 virtual void RemoveLoginImpl( |
51 const content::PasswordForm& form) OVERRIDE; | 51 const autofill::PasswordForm& form) OVERRIDE; |
52 virtual void RemoveLoginsCreatedBetweenImpl( | 52 virtual void RemoveLoginsCreatedBetweenImpl( |
53 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; | 53 const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; |
54 virtual void GetLoginsImpl( | 54 virtual void GetLoginsImpl( |
55 const content::PasswordForm& form, | 55 const autofill::PasswordForm& form, |
56 const ConsumerCallbackRunner& callback_runner) OVERRIDE; | 56 const ConsumerCallbackRunner& callback_runner) OVERRIDE; |
57 virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE; | 57 virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE; |
58 virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE; | 58 virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) OVERRIDE; |
59 virtual bool FillAutofillableLogins( | 59 virtual bool FillAutofillableLogins( |
60 std::vector<content::PasswordForm*>* forms) OVERRIDE; | 60 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; |
61 virtual bool FillBlacklistLogins( | 61 virtual bool FillBlacklistLogins( |
62 std::vector<content::PasswordForm*>* forms) OVERRIDE; | 62 std::vector<autofill::PasswordForm*>* forms) OVERRIDE; |
63 | 63 |
64 // Adds the given form to the Keychain if it's something we want to store | 64 // Adds the given form to the Keychain if it's something we want to store |
65 // there (i.e., not a blacklist entry). Returns true if the operation | 65 // there (i.e., not a blacklist entry). Returns true if the operation |
66 // succeeded (either we added successfully, or we didn't need to). | 66 // succeeded (either we added successfully, or we didn't need to). |
67 bool AddToKeychainIfNecessary(const content::PasswordForm& form); | 67 bool AddToKeychainIfNecessary(const autofill::PasswordForm& form); |
68 | 68 |
69 // Returns true if our database contains a form that exactly matches the given | 69 // Returns true if our database contains a form that exactly matches the given |
70 // keychain form. | 70 // keychain form. |
71 bool DatabaseHasFormMatchingKeychainForm( | 71 bool DatabaseHasFormMatchingKeychainForm( |
72 const content::PasswordForm& form); | 72 const autofill::PasswordForm& form); |
73 | 73 |
74 // Returns all the Keychain entries that we own but no longer have | 74 // Returns all the Keychain entries that we own but no longer have |
75 // corresponding metadata for in our database. | 75 // corresponding metadata for in our database. |
76 // Caller is responsible for deleting the forms. | 76 // Caller is responsible for deleting the forms. |
77 std::vector<content::PasswordForm*> GetUnusedKeychainForms(); | 77 std::vector<autofill::PasswordForm*> GetUnusedKeychainForms(); |
78 | 78 |
79 // Removes the given forms from the database. | 79 // Removes the given forms from the database. |
80 void RemoveDatabaseForms( | 80 void RemoveDatabaseForms( |
81 const std::vector<content::PasswordForm*>& forms); | 81 const std::vector<autofill::PasswordForm*>& forms); |
82 | 82 |
83 // Removes the given forms from the Keychain. | 83 // Removes the given forms from the Keychain. |
84 void RemoveKeychainForms( | 84 void RemoveKeychainForms( |
85 const std::vector<content::PasswordForm*>& forms); | 85 const std::vector<autofill::PasswordForm*>& forms); |
86 | 86 |
87 // Allows the creation of |notification_service_| to be scheduled on the right | 87 // Allows the creation of |notification_service_| to be scheduled on the right |
88 // thread. | 88 // thread. |
89 void CreateNotificationService(); | 89 void CreateNotificationService(); |
90 | 90 |
91 scoped_ptr<crypto::AppleKeychain> keychain_; | 91 scoped_ptr<crypto::AppleKeychain> keychain_; |
92 scoped_ptr<LoginDatabase> login_metadata_db_; | 92 scoped_ptr<LoginDatabase> login_metadata_db_; |
93 | 93 |
94 // Thread that the synchronous methods are run on. | 94 // Thread that the synchronous methods are run on. |
95 scoped_ptr<base::Thread> thread_; | 95 scoped_ptr<base::Thread> thread_; |
96 | 96 |
97 // Since we aren't running on a well-known thread but still want to send out | 97 // Since we aren't running on a well-known thread but still want to send out |
98 // notifications, we need to run our own service. | 98 // notifications, we need to run our own service. |
99 scoped_ptr<content::NotificationService> notification_service_; | 99 scoped_ptr<content::NotificationService> notification_service_; |
100 | 100 |
101 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); | 101 DISALLOW_COPY_AND_ASSIGN(PasswordStoreMac); |
102 }; | 102 }; |
103 | 103 |
104 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ | 104 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_MAC_H_ |
OLD | NEW |