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

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

Issue 1668523002: [Password Manager] Switch password manager code to use the Feature framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes to fieldtrial_testing_config_*.json Created 4 years, 9 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/password_manager/core/common/password_manager_switches.h"
6
7 namespace password_manager {
8
9 namespace switches {
10
11 // Force the password manager to allow sync credentials to be autofilled.
12 const char kAllowAutofillSyncCredential[] = "allow-autofill-sync-credential";
13
14 // Disable affiliation based matching, so that credentials stored for an Android
15 // application will not be considered matches for, and will not be filled into
16 // corresponding Web applications.
17 const char kDisableAffiliationBasedMatching[] =
18 "disable-affiliation-based-matching";
19
20 // Disable dropping the credential used to sync passwords.
21 const char kDisableDropSyncCredential[] = "disable-drop-sync-credential";
22
23 // Disable both saving and filling for the sync signin form.
24 const char kDisableManagerForSyncSignin[] = "disable-manager-for-sync-signin";
25
26 // Disallow autofilling of the sync credential.
27 const char kDisallowAutofillSyncCredential[] =
28 "disallow-autofill-sync-credential";
29
30 // Disallow autofilling of the sync credential only for transactional reauth
31 // pages.
32 const char kDisallowAutofillSyncCredentialForReauth[] =
33 "disallow-autofill-sync-credential-for-reauth";
34
35 // Enable affiliation based matching, so that credentials stored for an Android
36 // application will also be considered matches for, and be filled into
37 // corresponding Web applications.
38 const char kEnableAffiliationBasedMatching[] =
39 "enable-affiliation-based-matching";
40
41 // Enable dropping the credential used to sync passwords.
42 const char kEnableDropSyncCredential[] = "enable-drop-sync-credential";
43
44 // Enable saving and filling for the sync signin form. Currently the default
45 // behavior.
46 const char kEnableManagerForSyncSignin[] = "enable-manager-for-sync-signin";
47
48 } // namespace switches
49
50 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698