| Index: third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| index bace43323500d52113a8ed8a43d5cc14fe46ef63..90fbd9e50464c7b73f3ef6d094b738be6d508f8b 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
|
| @@ -55,7 +55,7 @@ static void typeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| v8SetReturnValueString(info, impl->fastGetAttribute(SVGNames::typeAttr), info.GetIsolate());
|
| }
|
|
|
| -static void typeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| +void typeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| SVGTestInterfaceV8Internal::typeAttributeGetter(info);
|
| }
|
| @@ -71,7 +71,7 @@ static void typeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Function
|
| impl->setAttribute(SVGNames::typeAttr, cppValue);
|
| }
|
|
|
| -static void typeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| +void typeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Local<v8::Value> v8Value = info[0];
|
| V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
|
|
|