| Index: Source/core/fileapi/Blob.h
|
| diff --git a/Source/core/fileapi/Blob.h b/Source/core/fileapi/Blob.h
|
| index 6c00b6062395055838efae2aca508865d8c2b949..c756a87c52d66b2c7b1e8741d3a81655c605bc42 100644
|
| --- a/Source/core/fileapi/Blob.h
|
| +++ b/Source/core/fileapi/Blob.h
|
| @@ -57,7 +57,7 @@ public:
|
| return new Blob(BlobDataHandle::create());
|
| }
|
|
|
| - static Blob* create(const Vector<ArrayBufferOrArrayBufferViewOrBlobOrString>&, const BlobPropertyBag&, ExceptionState&);
|
| + static Blob* create(const HeapVector<ArrayBufferOrArrayBufferViewOrBlobOrString>&, const BlobPropertyBag&, ExceptionState&);
|
|
|
| static Blob* create(PassRefPtr<BlobDataHandle> blobDataHandle)
|
| {
|
| @@ -106,7 +106,7 @@ protected:
|
| explicit Blob(PassRefPtr<BlobDataHandle>);
|
|
|
| template<typename ItemType>
|
| - static void populateBlobData(BlobData* blobData, const Vector<ItemType>& parts, bool normalizeLineEndingsToNative)
|
| + static void populateBlobData(BlobData* blobData, const HeapVector<ItemType>& parts, bool normalizeLineEndingsToNative)
|
| {
|
| for (size_t i = 0; i < parts.size(); ++i) {
|
| const ItemType& item = parts[i];
|
|
|