| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
|
| index ead3d8711f314bc334f27122d99302ce27f4fe0b..9df9b35499cfe15af981506bee5bd0391a404aa9 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
|
| @@ -51,7 +51,9 @@ namespace TestExceptionV8Internal {
|
| static void readonlyUnsignedShortAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Local<v8::Object> holder = info.Holder();
|
| +
|
| TestException* impl = V8TestException::toImpl(holder);
|
| +
|
| v8SetReturnValueUnsigned(info, impl->readonlyUnsignedShortAttribute());
|
| }
|
|
|
| @@ -63,7 +65,9 @@ void readonlyUnsignedShortAttributeAttributeGetterCallback(const v8::FunctionCal
|
| static void readonlyStringAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Local<v8::Object> holder = info.Holder();
|
| +
|
| TestException* impl = V8TestException::toImpl(holder);
|
| +
|
| v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate());
|
| }
|
|
|
|
|