Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Unified Diff: Source/bindings/core/v8/custom/V8BlobCustom.cpp

Issue 687573002: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/bindings/core/v8/custom/V8BlobCustomHelpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | Source/bindings/core/v8/custom/V8BlobCustomHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698