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_WIN_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/single_thread_task_runner.h" |
11 #include "components/password_manager/core/browser/password_store_default.h" | 12 #include "components/password_manager/core/browser/password_store_default.h" |
12 | 13 |
13 class PasswordWebDataService; | 14 class PasswordWebDataService; |
14 | 15 |
15 namespace password_manager { | 16 namespace password_manager { |
16 class LoginDatabase; | 17 class LoginDatabase; |
17 } | 18 } |
18 | 19 |
19 // Windows PasswordStore implementation that uses the default implementation, | 20 // Windows PasswordStore implementation that uses the default implementation, |
20 // but also uses IE7 passwords if no others found. | 21 // but also uses IE7 passwords if no others found. |
(...skipping 22 matching lines...) Expand all Loading... |
43 // password_manager::PasswordStore: | 44 // password_manager::PasswordStore: |
44 void GetLoginsImpl(const password_manager::PasswordStore::FormDigest& form, | 45 void GetLoginsImpl(const password_manager::PasswordStore::FormDigest& form, |
45 std::unique_ptr<GetLoginsRequest> request) override; | 46 std::unique_ptr<GetLoginsRequest> request) override; |
46 | 47 |
47 std::unique_ptr<DBHandler> db_handler_; | 48 std::unique_ptr<DBHandler> db_handler_; |
48 | 49 |
49 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); | 50 DISALLOW_COPY_AND_ASSIGN(PasswordStoreWin); |
50 }; | 51 }; |
51 | 52 |
52 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ | 53 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_WIN_H_ |
OLD | NEW |