| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperationsNotEnumerable.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperationsNotEnumerable.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperationsNotEnumerable.cpp
|
| index d3e741e0cea66bc11a4d37a7eb02ea47ab73d8a1..c50aa143c83d8585d4be493d7d136d5d8c3c0d3f 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperationsNotEnumerable.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperationsNotEnumerable.cpp
|
| @@ -55,7 +55,7 @@ static void indexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo
|
| v8SetReturnValueString(info, result, info.GetIsolate());
|
| }
|
|
|
| -static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| +void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| TestSpecialOperationsNotEnumerableV8Internal::indexedPropertyGetter(index, info);
|
| }
|
| @@ -71,7 +71,7 @@ static void namedPropertyGetter(v8::Local<v8::Name> name, const v8::PropertyCall
|
| v8SetReturnValueString(info, result, info.GetIsolate());
|
| }
|
|
|
| -static void namedPropertyGetterCallback(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| +void namedPropertyGetterCallback(v8::Local<v8::Name> name, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| if (!name->IsString())
|
| return;
|
|
|