Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |