Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: components/password_manager/core/common/password_manager_features.cc

Issue 1193143003: Enable import/export of passwords into/from Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698