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_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/threading/thread.h" | 13 #include "base/threading/thread.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "chrome/browser/common/cancelable_request.h" | 15 #include "chrome/browser/common/cancelable_request.h" |
16 #include "chrome/common/cancelable_task_tracker.h" | 16 #include "chrome/common/cancelable_task_tracker.h" |
17 #include "components/browser_context_keyed_service/refcounted_browser_context_ke yed_service.h" | 17 #include "components/browser_context_keyed_service/refcounted_browser_context_ke yed_service.h" |
18 | 18 |
19 class PasswordStore; | 19 class PasswordStore; |
20 class PasswordStoreConsumer; | 20 class PasswordStoreConsumer; |
21 class PasswordSyncableService; | 21 class PasswordSyncableService; |
22 class Task; | 22 class Task; |
23 | 23 |
24 namespace autofill { | 24 namespace autofill { struct PasswordForm; } |
vabr (Chromium)
2014/01/29 16:09:36
Please revert this formatting change, to decrease
riadh.chtara
2014/02/04 16:22:03
Done.
| |
25 struct PasswordForm; | |
26 } | |
27 | 25 |
28 namespace browser_sync { | 26 namespace browser_sync { |
29 class PasswordChangeProcessor; | 27 class PasswordChangeProcessor; |
30 class PasswordDataTypeController; | 28 class PasswordDataTypeController; |
31 class PasswordModelAssociator; | 29 class PasswordModelAssociator; |
32 class PasswordModelWorker; | 30 class PasswordModelWorker; |
33 } | 31 } |
34 | 32 |
35 namespace passwords_helper { | 33 namespace passwords_helper { |
36 void AddLogin(PasswordStore* store, const autofill::PasswordForm& form); | 34 void AddLogin(PasswordStore* store, const autofill::PasswordForm& form); |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
237 // may have been changed. | 235 // may have been changed. |
238 void NotifyLoginsChanged(); | 236 void NotifyLoginsChanged(); |
239 | 237 |
240 // The observers. | 238 // The observers. |
241 ObserverList<Observer> observers_; | 239 ObserverList<Observer> observers_; |
242 | 240 |
243 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 241 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
244 }; | 242 }; |
245 | 243 |
246 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ | 244 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
OLD | NEW |