Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 {% from "macros.tmpl" import wrap_with_condition -%} | |
| 2 | |
| 3 {{ license }} | |
| 4 #include "config.h" | |
| 5 #include "RuntimeEnabledFeatures.h" | |
| 6 | |
| 7 namespace WebCore { | |
| 8 | |
| 9 {%- for feature in features if not feature.custom %} | |
| 10 {%- call wrap_with_condition(feature.condition) %} | |
| 11 bool RuntimeEnabledFeatures::is{{feature.name}}Enabled = {{feature.default}}; | |
| 12 {%- endcall %} | |
| 13 {%- endfor %} | |
| 14 | |
| 15 } // namespace WebCore | |
| 16 | |
| OLD | NEW |