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

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

Issue 2954093002: Adding an edit button for username correction while saving new credentials for password management. (Closed)
Patch Set: Added the feature tag and edit button view Created 3 years, 6 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
7 7
8 // This file defines all the base::FeatureList features for the Password Manager 8 // This file defines all the base::FeatureList features for the Password Manager
9 // module. 9 // module.
10 10
11 #include "base/feature_list.h" 11 #include "base/feature_list.h"
12 12
13 namespace password_manager { 13 namespace password_manager {
14 14
15 namespace features { 15 namespace features {
16 16
17 // All features in alphabetical order. The features should be documented 17 // All features in alphabetical order. The features should be documented
18 // alongside the definition of their values in the .cc file. 18 // alongside the definition of their values in the .cc file.
19 19
20 extern const base::Feature kAffiliationBasedMatching; 20 extern const base::Feature kAffiliationBasedMatching;
21 extern const base::Feature kDropSyncCredential; 21 extern const base::Feature kDropSyncCredential;
22 extern const base::Feature kEnableManualPasswordGeneration; 22 extern const base::Feature kEnableManualPasswordGeneration;
23 extern const base::Feature kEnablePasswordForceSaving; 23 extern const base::Feature kEnablePasswordForceSaving;
24 extern const base::Feature kEnableUsernameCorrection;
vasilii 2017/06/23 12:02:07 Where is it used? ;-)
irmakk 2017/06/23 12:19:56 Oh, I thought we needed this to declare it in the
vasilii 2017/06/23 12:35:19 Hmm, strange decision. Your changes should be behi
irmakk 2017/06/23 13:04:23 OH, sorry I wasn't aware I didnt add the experimen
24 extern const base::Feature kProtectSyncCredential; 25 extern const base::Feature kProtectSyncCredential;
25 extern const base::Feature kProtectSyncCredentialOnReauth; 26 extern const base::Feature kProtectSyncCredentialOnReauth;
26 extern const base::Feature kPasswordImportExport; 27 extern const base::Feature kPasswordImportExport;
27 extern const base::Feature kViewPasswords; 28 extern const base::Feature kViewPasswords;
28 extern const base::Feature kFillOnAccountSelect; 29 extern const base::Feature kFillOnAccountSelect;
29 30
30 } // namespace features 31 } // namespace features
31 32
32 } // namespace password_manager 33 } // namespace password_manager
33 34
34 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ 35 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698