| 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/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 14 #include "base/pickle.h" | 15 #include "base/pickle.h" |
| 15 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
| 17 #include "build/build_config.h" |
| 16 #include "components/password_manager/core/browser/password_store.h" | 18 #include "components/password_manager/core/browser/password_store.h" |
| 17 #include "components/password_manager/core/browser/password_store_change.h" | 19 #include "components/password_manager/core/browser/password_store_change.h" |
| 18 #include "components/password_manager/core/browser/psl_matching_helper.h" | 20 #include "components/password_manager/core/browser/psl_matching_helper.h" |
| 19 #include "components/password_manager/core/browser/statistics_table.h" | 21 #include "components/password_manager/core/browser/statistics_table.h" |
| 20 #include "sql/connection.h" | 22 #include "sql/connection.h" |
| 21 #include "sql/meta_table.h" | 23 #include "sql/meta_table.h" |
| 22 | 24 |
| 23 #if defined(OS_IOS) | 25 #if defined(OS_IOS) |
| 24 #include "base/gtest_prod_util.h" | 26 #include "base/gtest_prod_util.h" |
| 25 #endif | 27 #endif |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 // This is a temporary measure for migration the Keychain on Mac. | 198 // This is a temporary measure for migration the Keychain on Mac. |
| 197 // crbug.com/466638 | 199 // crbug.com/466638 |
| 198 bool clear_password_values_; | 200 bool clear_password_values_; |
| 199 | 201 |
| 200 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); | 202 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); |
| 201 }; | 203 }; |
| 202 | 204 |
| 203 } // namespace password_manager | 205 } // namespace password_manager |
| 204 | 206 |
| 205 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ | 207 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ |
| OLD | NEW |