| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "components/password_manager/core/common/password_manager_features.h" | 5 #include "components/password_manager/core/common/password_manager_features.h" |
| 6 | 6 |
| 7 namespace password_manager { | 7 namespace password_manager { |
| 8 | 8 |
| 9 namespace features { | 9 namespace features { |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 // Disallow autofilling of the sync credential. | 40 // Disallow autofilling of the sync credential. |
| 41 const base::Feature kProtectSyncCredential = { | 41 const base::Feature kProtectSyncCredential = { |
| 42 "protect-sync-credential", base::FEATURE_DISABLED_BY_DEFAULT}; | 42 "protect-sync-credential", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 43 | 43 |
| 44 // Disallow autofilling of the sync credential only for transactional reauth | 44 // Disallow autofilling of the sync credential only for transactional reauth |
| 45 // pages. | 45 // pages. |
| 46 const base::Feature kProtectSyncCredentialOnReauth = { | 46 const base::Feature kProtectSyncCredentialOnReauth = { |
| 47 "protect-sync-credential-on-reauth", base::FEATURE_DISABLED_BY_DEFAULT}; | 47 "protect-sync-credential-on-reauth", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 48 | 48 |
| 49 const base::Feature kPasswordImportExport = {"password-import-export", |
| 50 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 51 |
| 49 } // namespace features | 52 } // namespace features |
| 50 | 53 |
| 51 } // namespace password_manager | 54 } // namespace password_manager |
| OLD | NEW |