| 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 COMPONENTS_DISPLAY_COMPOSITOR_DISPLAY_COMPOSITOR_FEATURES_H_ |
| 6 #define COMPONENTS_DISPLAY_COMPOSITOR_DISPLAY_COMPOSITOR_FEATURES_H_ |
| 7 |
| 8 // This file defines all the base::FeatureList features for the Password Manager |
| 9 // module. |
| 10 |
| 11 #include "base/feature_list.h" |
| 12 #include "components/display_compositor/display_compositor_export.h" |
| 13 |
| 14 namespace display_compositor { |
| 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 DISPLAY_COMPOSITOR_EXPORT extern const base::Feature kMemoryCoordinator; |
| 22 |
| 23 } // namespace features |
| 24 |
| 25 } // namespace display_compositor |
| 26 |
| 27 #endif // COMPONENTS_DISPLAY_COMPOSITOR_DISPLAY_COMPOSITOR_FEATURES_H_ |
| OLD | NEW |