| 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 class ProfileSyncService; |
| 20 class SigninManagerBase; |
| 21 |
| 19 namespace password_manager { | 22 namespace password_manager { |
| 20 | 23 |
| 21 // Interface to the database storage of login information, intended as a helper | 24 // Interface to the database storage of login information, intended as a helper |
| 22 // for PasswordStore on platforms that need internal storage of some or all of | 25 // for PasswordStore on platforms that need internal storage of some or all of |
| 23 // the login information. | 26 // the login information. |
| 24 class LoginDatabase { | 27 class LoginDatabase { |
| 25 public: | 28 public: |
| 26 LoginDatabase(); | 29 LoginDatabase(); |
| 27 virtual ~LoginDatabase(); | 30 virtual ~LoginDatabase(); |
| 28 | 31 |
| 29 // Initialize the database with an sqlite file at the given path. | 32 // Initialize the database with an sqlite file at the given path. |
| 30 // If false is returned, no other method should be called. | 33 // If false is returned, no other method should be called. |
| 31 bool Init(const base::FilePath& db_path); | 34 bool Init(const base::FilePath& db_path); |
| 32 | 35 |
| 33 // Reports usage metrics to UMA. | 36 // Reports usage metrics to UMA. |
| 34 void ReportMetrics(); | 37 void ReportMetrics(const std::string& sync_username, |
| 38 enum SyncState sync_state); |
| 35 | 39 |
| 36 // Adds |form| to the list of remembered password forms. Returns the list of | 40 // Adds |form| to the list of remembered password forms. Returns the list of |
| 37 // changes applied ({}, {ADD}, {REMOVE, ADD}). If it returns {REMOVE, ADD} | 41 // changes applied ({}, {ADD}, {REMOVE, ADD}). If it returns {REMOVE, ADD} |
| 38 // then the REMOVE is associated with the form that was added. Thus only the | 42 // then the REMOVE is associated with the form that was added. Thus only the |
| 39 // primary key columns contain the values associated with the removed form. | 43 // primary key columns contain the values associated with the removed form. |
| 40 PasswordStoreChangeList AddLogin(const autofill::PasswordForm& form); | 44 PasswordStoreChangeList AddLogin(const autofill::PasswordForm& form); |
| 41 | 45 |
| 42 // Updates existing password form. Returns the list of applied changes | 46 // Updates existing password form. Returns the list of applied changes |
| 43 // ({}, {UPDATE}). The password is looked up by the tuple {origin, | 47 // ({}, {UPDATE}). The password is looked up by the tuple {origin, |
| 44 // username_element, username_value, password_element, signon_realm}. | 48 // username_element, username_value, password_element, signon_realm}. |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 sql::MetaTable meta_table_; | 151 sql::MetaTable meta_table_; |
| 148 | 152 |
| 149 PSLMatchingHelper psl_helper_; | 153 PSLMatchingHelper psl_helper_; |
| 150 | 154 |
| 151 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); | 155 DISALLOW_COPY_AND_ASSIGN(LoginDatabase); |
| 152 }; | 156 }; |
| 153 | 157 |
| 154 } // namespace password_manager | 158 } // namespace password_manager |
| 155 | 159 |
| 156 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ | 160 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_LOGIN_DATABASE_H_ |
| OLD | NEW |