| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
| 13 #include "base/thread.h" | 13 #include "base/threading/thread.h" |
| 14 #include "base/time.h" | 14 #include "base/time.h" |
| 15 #include "webkit/glue/password_form.h" | 15 #include "webkit/glue/password_form.h" |
| 16 | 16 |
| 17 class Profile; | 17 class Profile; |
| 18 class Task; | 18 class Task; |
| 19 | 19 |
| 20 namespace browser_sync { | 20 namespace browser_sync { |
| 21 class PasswordDataTypeController; | 21 class PasswordDataTypeController; |
| 22 class PasswordModelAssociator; | 22 class PasswordModelAssociator; |
| 23 class PasswordModelWorker; | 23 class PasswordModelWorker; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 int handle_; | 158 int handle_; |
| 159 | 159 |
| 160 // List of pending request handles. Handles are removed from the set when | 160 // List of pending request handles. Handles are removed from the set when |
| 161 // they finish or are canceled. | 161 // they finish or are canceled. |
| 162 std::set<int> pending_requests_; | 162 std::set<int> pending_requests_; |
| 163 | 163 |
| 164 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 164 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ | 167 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_H_ |
| OLD | NEW |