| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| index 92c06a8990a74c56f1d207a5f07f82995476ac69..22561e99c2797ffe5523499e490905f334ea31fb 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| @@ -75,10 +75,13 @@ static void uLongLongAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8:
|
| }
|
|
|
| static void uLongLongAttributeAttributeSetter(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();
|
| TestTypedefs* impl = V8TestTypedefs::toImpl(holder);
|
|
|
| - ExceptionState exceptionState(info.GetIsolate(), ExceptionState::SetterContext, "TestTypedefs", "uLongLongAttribute");
|
| + ExceptionState exceptionState(isolate, ExceptionState::SetterContext, "TestTypedefs", "uLongLongAttribute");
|
|
|
| // Prepare the value to be set.
|
| uint64_t cppValue = NativeValueTraits<IDLUnsignedLongLong>::nativeValue(info.GetIsolate(), v8Value, exceptionState, NormalConversion);
|
| @@ -100,10 +103,13 @@ static void domStringOrDoubleOrNullAttributeAttributeGetter(const v8::FunctionCa
|
| }
|
|
|
| static void domStringOrDoubleOrNullAttributeAttributeSetter(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();
|
| TestTypedefs* impl = V8TestTypedefs::toImpl(holder);
|
|
|
| - ExceptionState exceptionState(info.GetIsolate(), ExceptionState::SetterContext, "TestTypedefs", "domStringOrDoubleOrNullAttribute");
|
| + ExceptionState exceptionState(isolate, ExceptionState::SetterContext, "TestTypedefs", "domStringOrDoubleOrNullAttribute");
|
|
|
| // Prepare the value to be set.
|
| StringOrDouble cppValue;
|
|
|