| Index: third_party/WebKit/Source/bindings/templates/partial_interface.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/partial_interface.h.tmpl b/third_party/WebKit/Source/bindings/templates/partial_interface.h.tmpl
|
| index 20ae7c4ab77bea4a0fbcea620b6cbba646da47cb..e813587b24809b7ce0ca77cad0693770601d90a0 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/partial_interface.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/partial_interface.h.tmpl
|
| @@ -9,40 +9,43 @@
|
| {% endfor %}
|
|
|
| namespace blink {
|
| +
|
| {% if attributes|origin_trial_enabled_attributes %}
|
| class ScriptState;
|
| {% endif %}
|
|
|
| class {{v8_class_or_partial}} {
|
| - STATIC_ONLY({{v8_class_or_partial}});
|
| -public:
|
| - static void initialize();
|
| - {% for method in methods if method.is_custom %}
|
| - static void {{method.name}}MethodCustom(const v8::FunctionCallbackInfo<v8::Value>&);
|
| - {% endfor %}
|
| - {% for attribute in attributes %}
|
| - {% if attribute.has_custom_getter %}{# FIXME: and not attribute.implemented_by #}
|
| - static void {{attribute.name}}AttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>&);
|
| - {% endif %}
|
| - {% if attribute.has_custom_setter %}{# FIXME: and not attribute.implemented_by #}
|
| - static void {{attribute.name}}AttributeSetterCustom(v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&);
|
| - {% endif %}
|
| - {% endfor %}
|
| - {% if unscopables or has_conditional_attributes_on_prototype or
|
| - methods | conditionally_exposed(is_partial) %}
|
| - static void preparePrototypeAndInterfaceObject(v8::Local<v8::Context>, const DOMWrapperWorld&, v8::Local<v8::Object>, v8::Local<v8::Function>, v8::Local<v8::FunctionTemplate>);
|
| - {% endif %}
|
| - {% for origin_trial_feature in origin_trial_features %}{{newline}}
|
| - static void install{{origin_trial_feature.name}}(ScriptState*, v8::Local<v8::Object> instance);
|
| - 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);
|
| - {% if not origin_trial_feature.needs_instance %}
|
| - static void install{{origin_trial_feature.name}}(ScriptState*);
|
| - {% endif %}
|
| - {% endfor %}
|
| -private:
|
| - static void install{{v8_class}}Template(v8::Isolate*, const DOMWrapperWorld&, v8::Local<v8::FunctionTemplate> interfaceTemplate);
|
| + STATIC_ONLY({{v8_class_or_partial}});
|
| + public:
|
| + static void initialize();
|
| + {% for method in methods if method.is_custom %}
|
| + static void {{method.name}}MethodCustom(const v8::FunctionCallbackInfo<v8::Value>&);
|
| + {% endfor %}
|
| + {% for attribute in attributes %}
|
| + {% if attribute.has_custom_getter %}{# FIXME: and not attribute.implemented_by #}
|
| + static void {{attribute.name}}AttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>&);
|
| + {% endif %}
|
| + {% if attribute.has_custom_setter %}{# FIXME: and not attribute.implemented_by #}
|
| + static void {{attribute.name}}AttributeSetterCustom(v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&);
|
| + {% endif %}
|
| + {% endfor %}
|
| + {% if unscopables or has_conditional_attributes_on_prototype or
|
| + methods | conditionally_exposed(is_partial) %}
|
| + static void preparePrototypeAndInterfaceObject(v8::Local<v8::Context>, const DOMWrapperWorld&, v8::Local<v8::Object>, v8::Local<v8::Function>, v8::Local<v8::FunctionTemplate>);
|
| + {% endif %}
|
| + {% for origin_trial_feature in origin_trial_features %}{{newline}}
|
| + static void install{{origin_trial_feature.name}}(ScriptState*, v8::Local<v8::Object> instance);
|
| + 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);
|
| + {% if not origin_trial_feature.needs_instance %}
|
| + static void install{{origin_trial_feature.name}}(ScriptState*);
|
| + {% endif %}
|
| + {% endfor %}
|
| + private:
|
| + static void install{{v8_class}}Template(v8::Isolate*, const DOMWrapperWorld&, v8::Local<v8::FunctionTemplate> interfaceTemplate);
|
| };
|
| -}
|
| -#endif // {{v8_class_or_partial}}_h
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // {{v8_class_or_partial}}_h
|
|
|
| {% endfilter %}{# format_blink_cpp_source_code #}
|
|
|