| 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_DEFAULT_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | |
| 10 | |
| 11 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 12 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 13 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 14 #include "chrome/browser/password_manager/login_database.h" | 12 #include "chrome/browser/password_manager/login_database.h" |
| 15 #include "chrome/browser/password_manager/password_store.h" | 13 #include "chrome/browser/password_manager/password_store.h" |
| 16 #include "chrome/browser/profile.h" | 14 #include "chrome/browser/profile.h" |
| 17 #include "chrome/browser/webdata/web_data_service.h" | 15 #include "chrome/browser/webdata/web_data_service.h" |
| 18 | 16 |
| 19 // Simple password store implementation that delegates everything to | 17 // Simple password store implementation that delegates everything to |
| 20 // the LoginDatabase. | 18 // the LoginDatabase. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 60 |
| 63 scoped_ptr<LoginDatabase> login_db_; | 61 scoped_ptr<LoginDatabase> login_db_; |
| 64 Profile* profile_; | 62 Profile* profile_; |
| 65 | 63 |
| 66 std::set<WebDataService::Handle> handles_; | 64 std::set<WebDataService::Handle> handles_; |
| 67 | 65 |
| 68 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault); | 66 DISALLOW_COPY_AND_ASSIGN(PasswordStoreDefault); |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ | 69 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_DEFAULT_H_ |
| OLD | NEW |