| Index: Source/bindings/core/v8/custom/V8FileCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8FileCustom.cpp b/Source/bindings/core/v8/custom/V8FileCustom.cpp
|
| index 8ea060e82c2e2f2e7a23d945e6e2c6f8c7dfde6e..544da6129bfa8385ab9c57b48fb493fc39f4d10c 100644
|
| --- a/Source/bindings/core/v8/custom/V8FileCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8FileCustom.cpp
|
| @@ -63,7 +63,7 @@ void V8File::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| return;
|
| }
|
|
|
| - if (!properties.parseBlobPropertyBag(info[2], "File", exceptionState, info.GetIsolate())) {
|
| + if (!properties.parseBlobPropertyBag(info.GetIsolate(), info[2], "File", exceptionState)) {
|
| exceptionState.throwIfNeeded();
|
| return;
|
| }
|
| @@ -74,7 +74,7 @@ void V8File::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| OwnPtr<BlobData> blobData = BlobData::create();
|
| blobData->setContentType(properties.contentType());
|
| v8::Local<v8::Object> blobParts = v8::Local<v8::Object>::Cast(info[0]);
|
| - if (!V8BlobCustomHelpers::processBlobParts(blobParts, properties.normalizeLineEndingsToNative(), *blobData, info.GetIsolate()))
|
| + if (!V8BlobCustomHelpers::processBlobParts(info.GetIsolate(), blobParts, properties.normalizeLineEndingsToNative(), *blobData))
|
| return;
|
|
|
| long long fileSize = blobData->length();
|
|
|