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 { |
25 struct PasswordForm; | 25 struct PasswordForm; |
vabr (Chromium)
2014/02/05 20:34:20
Don't add indentation inside namespace: http://goo
| |
26 } | 26 } |
27 | 27 |
28 namespace browser_sync { | 28 namespace browser_sync { |
29 class PasswordChangeProcessor; | 29 class PasswordChangeProcessor; |
30 class PasswordDataTypeController; | 30 class PasswordDataTypeController; |
31 class PasswordModelAssociator; | 31 class PasswordModelAssociator; |
32 class PasswordModelWorker; | 32 class PasswordModelWorker; |
33 } | 33 } |
34 | 34 |
35 namespace passwords_helper { | 35 namespace passwords_helper { |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
237 // may have been changed. | 237 // may have been changed. |
238 void NotifyLoginsChanged(); | 238 void NotifyLoginsChanged(); |
239 | 239 |
240 // The observers. | 240 // The observers. |
241 ObserverList<Observer> observers_; | 241 ObserverList<Observer> observers_; |
242 | 242 |
243 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 243 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
244 }; | 244 }; |
245 | 245 |
246 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ | 246 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
OLD | NEW |