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.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 Task; | 21 class Task; |
22 | 22 |
23 namespace browser_sync { | 23 namespace browser_sync { |
24 class PasswordDataTypeController; | 24 class PasswordDataTypeController; |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 // may have been changed. | 226 // may have been changed. |
227 void NotifyLoginsChanged(); | 227 void NotifyLoginsChanged(); |
228 | 228 |
229 // The observers. | 229 // The observers. |
230 ObserverList<Observer> observers_; | 230 ObserverList<Observer> observers_; |
231 | 231 |
232 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 232 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
233 }; | 233 }; |
234 | 234 |
235 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ | 235 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
OLD | NEW |