| Index: Source/core/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl | 
| diff --git a/Source/core/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl b/Source/core/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl | 
| deleted file mode 100644 | 
| index 9de600f0eeefe9f3a4d0a1e67d03c6fa6e537f9b..0000000000000000000000000000000000000000 | 
| --- a/Source/core/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl | 
| +++ /dev/null | 
| @@ -1,24 +0,0 @@ | 
| -{% from "macros.tmpl" import wrap_with_condition, license -%} | 
| -{{ license() }} | 
| - | 
| -#include "config.h" | 
| -#include "RuntimeEnabledFeatures.h" | 
| - | 
| -namespace WebCore { | 
| - | 
| -{% for feature_set in feature_sets %} | 
| -void RuntimeEnabledFeatures::set{{feature_set|capitalize}}FeaturesEnabled(bool enable) | 
| -{ | 
| -{%- for feature in features if feature.status == feature_set %} | 
| -    set{{feature.name}}Enabled(enable); | 
| -{%- endfor %} | 
| -} | 
| -{% endfor %} | 
| - | 
| -{%- for feature in features if not feature.custom %} | 
| -{%- call wrap_with_condition(feature.condition) %} | 
| -bool RuntimeEnabledFeatures::is{{feature.name}}Enabled = false; | 
| -{%- endcall %} | 
| -{%- endfor %} | 
| - | 
| -} // namespace WebCore | 
|  |