| Index: third_party/WebKit/Source/bindings/templates/attributes.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/templates/attributes.cpp b/third_party/WebKit/Source/bindings/templates/attributes.cpp
|
| index 8f279146b3ffc25b9a0c7df9932a404688a79e02..f67443e324a9f34aa69c4f8a7ee7e710e8e72ad6 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/attributes.cpp
|
| +++ b/third_party/WebKit/Source/bindings/templates/attributes.cpp
|
| @@ -170,7 +170,7 @@ if ({{cpp_value}}.isEmpty()) {
|
|
|
| {##############################################################################}
|
| {% macro attribute_getter_callback(attribute, world_suffix) %}
|
| -static void {{attribute.name}}AttributeGetterCallback{{world_suffix}}(
|
| +void {{attribute.name}}AttributeGetterCallback{{world_suffix}}(
|
| {%- if attribute.is_data_type_property %}
|
| v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info
|
| {%- else %}
|
| @@ -208,7 +208,7 @@ const v8::FunctionCallbackInfo<v8::Value>& info
|
|
|
| {##############################################################################}
|
| {% macro constructor_getter_callback(attribute, world_suffix) %}
|
| -static void {{attribute.name}}ConstructorGetterCallback{{world_suffix}}(v8::Local<v8::Name> property, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| +void {{attribute.name}}ConstructorGetterCallback{{world_suffix}}(v8::Local<v8::Name> property, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| {% if attribute.deprecate_as %}
|
| Deprecation::countDeprecationIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::{{attribute.deprecate_as}});
|
| @@ -352,7 +352,7 @@ v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info
|
|
|
| {##############################################################################}
|
| {% macro attribute_setter_callback(attribute, world_suffix) %}
|
| -static void {{attribute.name}}AttributeSetterCallback{{world_suffix}}(
|
| +void {{attribute.name}}AttributeSetterCallback{{world_suffix}}(
|
| {%- if attribute.is_data_type_property %}
|
| v8::Local<v8::Name>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
|
| {%- else %}
|
|
|