Chromium Code Reviews| Index: components/password_manager/core/common/password_manager_features.h |
| diff --git a/components/password_manager/core/common/password_manager_features.h b/components/password_manager/core/common/password_manager_features.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f3e4c3ad8fd73a7b83304f61db262dc22d229ec6 |
| --- /dev/null |
| +++ b/components/password_manager/core/common/password_manager_features.h |
| @@ -0,0 +1,28 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// 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.
|
| +// module. |
| + |
| +#ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ |
| +#define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ |
| + |
| +#include "base/feature_list.h" |
| + |
| +namespace password_manager { |
| + |
| +namespace features { |
| + |
| +// All features in alphabetical order. The features should be documented |
| +// alongside the definition of their values in the .cc file. |
| + |
| +extern const base::Feature kEnableAutomaticPasswordSaving; |
| +extern const base::Feature kEnablePasswordChangeSupport; |
| +extern const base::Feature kEnablePasswordForceSaving; |
| + |
| +} // namespace features |
| + |
| +} // namespace password_manager |
| + |
| +#endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_FEATURES_H_ |