| Index: Source/bindings/core/v8/custom/V8BlobCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8BlobCustom.cpp b/Source/bindings/core/v8/custom/V8BlobCustom.cpp
|
| index 761e5b8d13efdd7967d2e7b7c51025ee545e50c9..042977ab214d2c776079e8058fa420230e22c16f 100644
|
| --- a/Source/bindings/core/v8/custom/V8BlobCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8BlobCustom.cpp
|
| @@ -60,7 +60,7 @@ void V8Blob::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| return;
|
| }
|
|
|
| - if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
|
| + if (!properties.parseBlobPropertyBag(info.GetIsolate(), info[1], "Blob", exceptionState)) {
|
| exceptionState.throwIfNeeded();
|
| return;
|
| }
|
| @@ -68,7 +68,7 @@ void V8Blob::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
|
|
| OwnPtr<BlobData> blobData = BlobData::create();
|
| blobData->setContentType(properties.contentType());
|
| - if (!V8BlobCustomHelpers::processBlobParts(v8::Local<v8::Object>::Cast(info[0]), properties.normalizeLineEndingsToNative(), *blobData, info.GetIsolate()))
|
| + if (!V8BlobCustomHelpers::processBlobParts(info.GetIsolate(), v8::Local<v8::Object>::Cast(info[0]), properties.normalizeLineEndingsToNative(), *blobData))
|
| return;
|
|
|
| long long blobSize = blobData->length();
|
|
|