| Index: Source/bindings/tests/results/core/V8DataView.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8DataView.cpp b/Source/bindings/tests/results/core/V8DataView.cpp
|
| index 77200d9710b7ec177f24b5c721308b22af5889c2..eb778a41ded8c9529eb68d7de849651c5b862016 100644
|
| --- a/Source/bindings/tests/results/core/V8DataView.cpp
|
| +++ b/Source/bindings/tests/results/core/V8DataView.cpp
|
| @@ -40,7 +40,7 @@ TestDataView* V8DataView::toImpl(v8::Handle<v8::Object> object)
|
| if (scriptWrappable)
|
| return scriptWrappable->toImpl<TestDataView>();
|
|
|
| - v8::Handle<v8::DataView> v8View = object.As<v8::DataView>();
|
| + v8::Local<v8::DataView> v8View = object.As<v8::DataView>();
|
| RefPtr<TestDataView> typedArray = TestDataView::create(V8ArrayBuffer::toImpl(v8View->Buffer()), v8View->ByteOffset(), v8View->ByteLength());
|
| typedArray->associateWithWrapper(v8::Isolate::GetCurrent(), typedArray->wrapperTypeInfo(), object);
|
|
|
|
|