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

Unified Diff: Source/bindings/core/v8/custom/V8BlobCustomHelpers.h

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
Index: Source/bindings/core/v8/custom/V8BlobCustomHelpers.h
diff --git a/Source/bindings/core/v8/custom/V8BlobCustomHelpers.h b/Source/bindings/core/v8/custom/V8BlobCustomHelpers.h
index 9a636306021b452aea297b9f44e7a210c9197e66..f60644e0535682446be186b6544f8d18a0b462ba 100644
--- a/Source/bindings/core/v8/custom/V8BlobCustomHelpers.h
+++ b/Source/bindings/core/v8/custom/V8BlobCustomHelpers.h
@@ -66,7 +66,7 @@ public:
// Extracts the "type" and "endings" properties out of the BlobPropertyBag passed to a Blob constructor.
// http://www.w3.org/TR/FileAPI/#constructorParams
// Returns true if everything went well, false if a JS exception was thrown.
- bool parseBlobPropertyBag(v8::Local<v8::Value> propertyBag, const char* blobClassName, ExceptionState&, v8::Isolate*);
+ bool parseBlobPropertyBag(v8::Isolate*, v8::Local<v8::Value> propertyBag, const char* blobClassName, ExceptionState&);
private:
String m_contentType;
@@ -84,7 +84,7 @@ private:
// Appends the blobParts passed to a Blob or File constructor into a BlobData.
// http://www.w3.org/TR/FileAPI/#constructorParams
// Returns true if everything went well, false if a JS exception was thrown.
-bool processBlobParts(v8::Local<v8::Object> blobParts, bool normalizeLineEndingsToNative, BlobData&, v8::Isolate*);
+bool processBlobParts(v8::Isolate*, v8::Local<v8::Object> blobParts, bool normalizeLineEndingsToNative, BlobData&);
} // namespace V8BlobCustomHelpers
« no previous file with comments | « Source/bindings/core/v8/custom/V8BlobCustom.cpp ('k') | Source/bindings/core/v8/custom/V8BlobCustomHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698