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 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "base/time.h" | 11 #include "base/time.h" |
13 #include "chrome/browser/password_manager/password_store_default.h" | 12 #include "chrome/browser/password_manager/password_store_default.h" |
14 | 13 |
15 class LoginDatabase; | 14 class LoginDatabase; |
16 class PrefService; | 15 class PrefService; |
17 class Profile; | 16 class Profile; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 // Whether we should allow falling back to the default store. If there is | 115 // Whether we should allow falling back to the default store. If there is |
117 // nothing to migrate, then the first attempt to use the native store will | 116 // nothing to migrate, then the first attempt to use the native store will |
118 // be the first time we try to use it and we should allow falling back. If | 117 // be the first time we try to use it and we should allow falling back. If |
119 // we have migrated successfully, then we do not allow falling back. | 118 // we have migrated successfully, then we do not allow falling back. |
120 bool allow_fallback_; | 119 bool allow_fallback_; |
121 | 120 |
122 DISALLOW_COPY_AND_ASSIGN(PasswordStoreX); | 121 DISALLOW_COPY_AND_ASSIGN(PasswordStoreX); |
123 }; | 122 }; |
124 | 123 |
125 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ | 124 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_X_H_ |
OLD | NEW |