| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_NATIVE_BACKEND_LIBSECRET_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_LIBSECRET_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_LIBSECRET_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_LIBSECRET_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 // Convert data get from Libsecret to Passwordform. Uses |lookup_form| for | 99 // Convert data get from Libsecret to Passwordform. Uses |lookup_form| for |
| 100 // additional (PSL) matching, if present. | 100 // additional (PSL) matching, if present. |
| 101 ScopedVector<autofill::PasswordForm> ConvertFormList( | 101 ScopedVector<autofill::PasswordForm> ConvertFormList( |
| 102 GList* found, | 102 GList* found, |
| 103 const password_manager::PasswordStore::FormDigest* lookup_form); | 103 const password_manager::PasswordStore::FormDigest* lookup_form); |
| 104 | 104 |
| 105 // The app string, possibly based on the local profile id. | 105 // The app string, possibly based on the local profile id. |
| 106 std::string app_string_; | 106 std::string app_string_; |
| 107 | 107 |
| 108 // True if we're already ensured that the default keyring has been unlocked |
| 109 // once. |
| 110 bool ensured_keyring_unlocked_; |
| 111 |
| 108 DISALLOW_COPY_AND_ASSIGN(NativeBackendLibsecret); | 112 DISALLOW_COPY_AND_ASSIGN(NativeBackendLibsecret); |
| 109 }; | 113 }; |
| 110 | 114 |
| 111 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_LIBSECRET_H_ | 115 #endif // CHROME_BROWSER_PASSWORD_MANAGER_NATIVE_BACKEND_LIBSECRET_H_ |
| OLD | NEW |