OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_X_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/time.h" | 11 #include "base/time/time.h" |
12 #include "chrome/browser/password_manager/password_store_default.h" | 12 #include "chrome/browser/password_manager/password_store_default.h" |
13 | 13 |
14 class LoginDatabase; | 14 class LoginDatabase; |
15 class PrefService; | 15 class PrefService; |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 namespace user_prefs { | 18 namespace user_prefs { |
19 class PrefRegistrySyncable; | 19 class PrefRegistrySyncable; |
20 } | 20 } |
21 | 21 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // Whether we should allow falling back to the default store. If there is | 120 // Whether we should allow falling back to the default store. If there is |
121 // nothing to migrate, then the first attempt to use the native store will | 121 // nothing to migrate, then the first attempt to use the native store will |
122 // be the first time we try to use it and we should allow falling back. If | 122 // be the first time we try to use it and we should allow falling back. If |
123 // we have migrated successfully, then we do not allow falling back. | 123 // we have migrated successfully, then we do not allow falling back. |
124 bool allow_fallback_; | 124 bool allow_fallback_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(PasswordStoreX); | 126 DISALLOW_COPY_AND_ASSIGN(PasswordStoreX); |
127 }; | 127 }; |
128 | 128 |
129 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ | 129 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ |
OLD | NEW |