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

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

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: 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 // This file defines all the base::FeatureList features for the Password Manager
vabr (Chromium) 2015/12/07 13:34:33 nit: Move this comment below the #include guard on
Pritam Nikam 2015/12/07 15:33:41 Done.
6 // module.
7
8 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
9 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
10
11 #include "base/feature_list.h"
12
13 namespace password_manager {
14
15 namespace features {
16
17 // All features in alphabetical order. The features should be documented
18 // alongside the definition of their values in the .cc file.
19
20 extern const base::Feature kEnableAutomaticPasswordSaving;
21 extern const base::Feature kEnablePasswordChangeSupport;
22 extern const base::Feature kEnablePasswordForceSaving;
23
24 } // namespace features
25
26 } // namespace password_manager
27
28 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698