summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl')
-rw-r--r--chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl b/chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl
index 5006b34050a..5728a76e968 100644
--- a/chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl
+++ b/chromium/third_party/blink/renderer/build/scripts/templates/internal_runtime_flags.idl.tmpl
@@ -7,9 +7,9 @@ interface InternalRuntimeFlags {
{% for feature in standard_features %}
{%+ if feature.condition %}[Conditional={{feature.condition}}] {% endif -%}
{% if feature.settable_from_internals %}
- attribute boolean {{feature.tokenized_name.to_lower_camel_case()}}Enabled;
+ attribute boolean {{feature.name.to_lower_camel_case()}}Enabled;
{% else %}
- readonly attribute boolean {{feature.tokenized_name.to_lower_camel_case()}}Enabled;
+ readonly attribute boolean {{feature.name.to_lower_camel_case()}}Enabled;
{% endif %}
{% endfor %}
};