| Index: Source/bindings/core/v8/custom/V8FileReaderCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8FileReaderCustom.cpp b/Source/bindings/core/v8/custom/V8FileReaderCustom.cpp
|
| index 76fb38b4b7ca2f03a10a43d64eed2958b286817b..5cfb8f7bf6871b5419dde3d22cd8df452b6f49c0 100644
|
| --- a/Source/bindings/core/v8/custom/V8FileReaderCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8FileReaderCustom.cpp
|
| @@ -40,7 +40,7 @@ namespace blink {
|
| void V8FileReader::resultAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| v8::Handle<v8::Object> holder = info.Holder();
|
| - FileReader* impl = V8FileReader::toNative(holder);
|
| + FileReader* impl = V8FileReader::toImpl(holder);
|
| if (impl->readType() == FileReaderLoader::ReadAsArrayBuffer) {
|
| v8SetReturnValueFast(info, impl->arrayBufferResult(), impl);
|
| return;
|
|
|