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

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

Issue 1488763003: [Password Manager] Switch password manager code to use "base/feature_list.h". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses nit. Created 5 years 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 2015 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_features.h"
6
7 namespace password_manager {
8
9 namespace features {
10
11 // Disables the save-password prompt. Passwords are then saved automatically,
12 // without asking the user.
13 const base::Feature kEnableAutomaticPasswordSaving = {
14 "enable-automatic-password-saving", base::FEATURE_DISABLED_BY_DEFAULT};
15
16 // Enable supporting of updating password in the password manager on a password
17 // change form submit.
18 const base::Feature kEnablePasswordChangeSupport = {
19 "enable-password-change-support", base::FEATURE_DISABLED_BY_DEFAULT};
20
21 // Enable a context menu item in the password field that allows the user
22 // to manually enforce saving of their password.
23 const base::Feature kEnablePasswordForceSaving = {
24 "enable-password-force-saving", base::FEATURE_DISABLED_BY_DEFAULT};
25
26 } // namespace features
27
28 } // namespace password_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698