| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/pickle.h" | 12 #include "base/pickle.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "components/password_manager/core/browser/password_store_change.h" | 14 #include "components/password_manager/core/browser/password_store_change.h" |
| 15 #include "components/password_manager/core/browser/psl_matching_helper.h" | 15 #include "components/password_manager/core/browser/psl_matching_helper.h" |
| 16 #include "sql/connection.h" | 16 #include "sql/connection.h" |
| 17 #include "sql/meta_table.h" | 17 #include "sql/meta_table.h" |
| 18 | 18 |
| 19 namespace password_manager { | 19 namespace password_manager { |
| 20 | 20 |
| 21 class PasswordManagerClient; | |
| 22 | |
| 23 // Interface to the database storage of login information, intended as a helper | 21 // Interface to the database storage of login information, intended as a helper |
| 24 // for PasswordStore on platforms that need internal storage of some or all of | 22 // for PasswordStore on platforms that need internal storage of some or all of |
| 25 // the login information. | 23 // the login information. |
| 26 class LoginDatabase { | 24 class LoginDatabase { |
| 27 public: | 25 public: |
| 28 LoginDatabase(); | 26 LoginDatabase(); |
| 29 virtual ~LoginDatabase(); | 27 virtual ~LoginDatabase(); |
| 30 | 28 |
| 31 // Initialize the database with an sqlite file at the given path. | 29 // Initialize the database with an sqlite file at the given path. |
| 32 // If false is returned, no other method should be called. | 30 // If false is returned, no other method should be called. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 base::FilePath db_path_; | 147 base::FilePath db_path_; |
| 150 mutable sql::Connection db_; | 148 mutable sql::Connection db_; |
| 151 sql::MetaTable meta_table_; | 149 sql::MetaTable meta_table_; |
| 152 | 150 |
| 153 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); | 151 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); |
| 154 }; | 152 }; |
| 155 | 153 |
| 156 } // namespace password_manager | 154 } // namespace password_manager |
| 157 | 155 |
| 158 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ | 156 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ |
| OLD | NEW |