| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file defines all the public base::FeatureList features for the gin | 5 // This file defines all the public base::FeatureList features for the gin |
| 6 // module. | 6 // module. |
| 7 | 7 |
| 8 #ifndef GIN_PUBLIC_GIN_FEATURES_H_ | 8 #ifndef GIN_PUBLIC_GIN_FEATURES_H_ |
| 9 #define GIN_PUBLIC_GIN_FEATURES_H_ | 9 #define GIN_PUBLIC_GIN_FEATURES_H_ |
| 10 | 10 |
| 11 #include "base/feature_list.h" | 11 #include "base/feature_list.h" |
| 12 #include "gin/gin_export.h" | 12 #include "gin/gin_export.h" |
| 13 | 13 |
| 14 namespace features { | 14 namespace features { |
| 15 | 15 |
| 16 GIN_EXPORT extern const base::Feature kV8Ignition; | 16 GIN_EXPORT extern const base::Feature kV8Ignition; |
| 17 GIN_EXPORT extern const base::Feature kV8IgnitionLowEnd; | 17 GIN_EXPORT extern const base::Feature kV8IgnitionLowEnd; |
| 18 GIN_EXPORT extern const base::Feature kV8IgnitionLazy; | |
| 19 GIN_EXPORT extern const base::Feature kV8IgnitionEager; | |
| 20 | 18 |
| 21 } // namespace features | 19 } // namespace features |
| 22 | 20 |
| 23 #endif // GIN_PUBLIC_GIN_FEATURES_H_ | 21 #endif // GIN_PUBLIC_GIN_FEATURES_H_ |
| OLD | NEW |