| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 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 #ifndef BASE_BASE_FEATURES_H_ |
| 6 #define BASE_BASE_FEATURES_H_ |
| 7 |
| 8 // This file defines all the base::FeatureList features for the Password Manager |
| 9 // module. |
| 10 |
| 11 #include "base/base_export.h" |
| 12 #include "base/feature_list.h" |
| 13 |
| 14 namespace base { |
| 15 |
| 16 namespace features { |
| 17 |
| 18 // All features in alphabetical order. The features should be documented |
| 19 // alongside the definition of their values in the .cc file. |
| 20 |
| 21 BASE_EXPORT extern const base::Feature kMemoryCoordinator; |
| 22 |
| 23 } // namespace features |
| 24 |
| 25 } // namespace base |
| 26 |
| 27 #endif // BASE_BASE_FEATURES_H_ |
| OLD | NEW |