| Index: third_party/WebKit/Source/core/fileapi/Blob.h
|
| diff --git a/third_party/WebKit/Source/core/fileapi/Blob.h b/third_party/WebKit/Source/core/fileapi/Blob.h
|
| index 92785afcf246f891b7c7d32b10ebd61d25b663e6..47d829466a9d5973a1f964fc0de52d1a08a14885 100644
|
| --- a/third_party/WebKit/Source/core/fileapi/Blob.h
|
| +++ b/third_party/WebKit/Source/core/fileapi/Blob.h
|
| @@ -52,12 +52,12 @@ class ExecutionContext;
|
| class CORE_EXPORT Blob : public GarbageCollectedFinalized<Blob>, public ScriptWrappable, public URLRegistrable, public ImageBitmapSource {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static Blob* create(ExceptionState&)
|
| + static Blob* create(ExecutionContext*, ExceptionState&)
|
| {
|
| return new Blob(BlobDataHandle::create());
|
| }
|
|
|
| - static Blob* create(const HeapVector<ArrayBufferOrArrayBufferViewOrBlobOrString>&, const BlobPropertyBag&, ExceptionState&);
|
| + static Blob* create(ExecutionContext*, const HeapVector<ArrayBufferOrArrayBufferViewOrBlobOrString>&, const BlobPropertyBag&, ExceptionState&);
|
|
|
| static Blob* create(PassRefPtr<BlobDataHandle> blobDataHandle)
|
| {
|
|
|