| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp
|
| index 07ba7e5f2e563aeb13a268d63fc66b4cacc97028..b5f3d0aac52742f287dd0a14a1c7243c112b3dc9 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp
|
| @@ -66,6 +66,9 @@ static void voidCallbackFunctionAttributeAttributeGetter(const v8::FunctionCallb
|
| }
|
|
|
| static void voidCallbackFunctionAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| + v8::Isolate* isolate = info.GetIsolate();
|
| + ALLOW_UNUSED_LOCAL(isolate);
|
| +
|
| v8::Local<v8::Object> holder = info.Holder();
|
| TestCallbackFunctions* impl = V8TestCallbackFunctions::toImpl(holder);
|
|
|
| @@ -84,6 +87,9 @@ static void anyCallbackFunctionOptionalAnyArgAttributeAttributeGetter(const v8::
|
| }
|
|
|
| static void anyCallbackFunctionOptionalAnyArgAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| + v8::Isolate* isolate = info.GetIsolate();
|
| + ALLOW_UNUSED_LOCAL(isolate);
|
| +
|
| v8::Local<v8::Object> holder = info.Holder();
|
| TestCallbackFunctions* impl = V8TestCallbackFunctions::toImpl(holder);
|
|
|
|
|