| Index: third_party/WebKit/Source/modules/fetch/ReadableStreamDataConsumerHandle.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/ReadableStreamDataConsumerHandle.cpp b/third_party/WebKit/Source/modules/fetch/ReadableStreamDataConsumerHandle.cpp
|
| index e920431c8699aa8fbbfe69c8152215d4b466dbcd..639665ede11d54291dd5e5b3380d8677997c8a63 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/ReadableStreamDataConsumerHandle.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/ReadableStreamDataConsumerHandle.cpp
|
| @@ -54,7 +54,7 @@ public:
|
| readingContext->onReadDone();
|
| return v;
|
| }
|
| - if (!V8Uint8Array::hasInstance(value, v.isolate())) {
|
| + if (!value->IsUint8Array()) {
|
| readingContext->onRejected();
|
| return ScriptValue();
|
| }
|
|
|