| OLD | NEW |
| 1 {% from "macros.tmpl" import wrap_with_condition, license -%} | 1 {% from "macros.tmpl" import wrap_with_condition, license -%} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #ifndef RuntimeEnabledFeatures_h | 4 #ifndef RuntimeEnabledFeatures_h |
| 5 #define RuntimeEnabledFeatures_h | 5 #define RuntimeEnabledFeatures_h |
| 6 | 6 |
| 7 namespace WebCore { | 7 namespace WebCore { |
| 8 | 8 |
| 9 // A class that stores static enablers for all experimental features. | 9 // A class that stores static enablers for all experimental features. |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 {%- call wrap_with_condition(feature.condition) %} | 39 {%- call wrap_with_condition(feature.condition) %} |
| 40 static bool is{{feature.name}}Enabled; | 40 static bool is{{feature.name}}Enabled; |
| 41 {%- endcall %} | 41 {%- endcall %} |
| 42 {%- endfor %} | 42 {%- endfor %} |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace WebCore | 45 } // namespace WebCore |
| 46 | 46 |
| 47 #endif // RuntimeEnabledFeatures_h | 47 #endif // RuntimeEnabledFeatures_h |
| 48 | 48 |
| OLD | NEW |