| Index: Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp b/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
|
| index ab5745bf05becf39f779679eb607b1f36182dc0a..e79fc7f97313f1c9ad6e1dc7f4b1d4eaf3d68cc7 100644
|
| --- a/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8ErrorEventCustom.cpp
|
| @@ -45,7 +45,7 @@ namespace blink {
|
|
|
| void V8ErrorEvent::errorAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - v8::Handle<v8::Value> error = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::error(info.GetIsolate()));
|
| + v8::Local<v8::Value> error = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::error(info.GetIsolate()));
|
| if (!error.IsEmpty()) {
|
| v8SetReturnValue(info, error);
|
| return;
|
|
|