| Index: third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| index 29acbc36034829bb3b6938947e929d0410b76f08..e72747618e3b6dcd3e45258aa294dcd8ac9aa79d 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| @@ -148,12 +148,12 @@ class {{v8_class}} {
|
| {% endfor %}
|
| {% endif %}
|
|
|
| - {% for origin_trial_feature in origin_trial_features %}
|
| + {% for feature in origin_trial_features %}
|
|
|
| - static void install{{origin_trial_feature.name}}(v8::Isolate*, const DOMWrapperWorld&, v8::Local<v8::Object> instance, v8::Local<v8::Object> prototype, v8::Local<v8::Function> interface);
|
| - static void install{{origin_trial_feature.name}}(ScriptState*, v8::Local<v8::Object> instance);
|
| - {% if not origin_trial_feature.needs_instance %}
|
| - static void install{{origin_trial_feature.name}}(ScriptState*);
|
| + static void install{{feature.name}}(v8::Isolate*, const DOMWrapperWorld&, v8::Local<v8::Object> instance, v8::Local<v8::Object> prototype, v8::Local<v8::Function> interface);
|
| + static void install{{feature.name}}(ScriptState*, v8::Local<v8::Object> instance);
|
| + {% if not feature.needs_instance %}
|
| + static void install{{feature.name}}(ScriptState*);
|
| {% endif %}
|
| {% endfor %}
|
| {% if has_partial_interface %}
|
|
|