| Index: Source/bindings/templates/attributes.cpp
|
| diff --git a/Source/bindings/templates/attributes.cpp b/Source/bindings/templates/attributes.cpp
|
| index 5577e9946e33a12c009ed25cd319d791dca1a3cf..7c0e08c3b439eff3d02f7dba9fb47738e3a3db99 100644
|
| --- a/Source/bindings/templates/attributes.cpp
|
| +++ b/Source/bindings/templates/attributes.cpp
|
| @@ -149,7 +149,7 @@ static void {{attribute.name}}AttributeGetterCallback{{world_suffix}}(
|
| {%- if attribute.is_expose_js_accessors %}
|
| const v8::FunctionCallbackInfo<v8::Value>& info
|
| {%- else %}
|
| -v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info
|
| +v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info
|
| {%- endif %})
|
| {
|
| TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMGetter");
|
| @@ -187,7 +187,7 @@ static void {{attribute.name}}ConstructorGetterCallback{{world_suffix}}(
|
| {%- if attribute.is_expose_js_accessors %}
|
| const v8::FunctionCallbackInfo<v8::Value>& info
|
| {%- else %}
|
| -v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info
|
| +v8::Local<v8::Name> property, const v8::PropertyCallbackInfo<v8::Value>& info
|
| {%- endif %})
|
| {
|
| TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMGetter");
|
| @@ -309,7 +309,7 @@ static void {{attribute.name}}AttributeSetterCallback{{world_suffix}}(
|
| {%- if attribute.is_expose_js_accessors %}
|
| const v8::FunctionCallbackInfo<v8::Value>& info
|
| {%- else %}
|
| -v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
|
| +v8::Local<v8::Name>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
|
| {%- endif %})
|
| {
|
| {% if attribute.is_expose_js_accessors %}
|
|
|