From 8dd16259287f58f9273002717ec4d27e97127719 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:43:14 +0200 Subject: Merging upstream version 127.0. Signed-off-by: Daniel Baumann --- dom/file/BaseBlobImpl.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'dom/file/BaseBlobImpl.h') diff --git a/dom/file/BaseBlobImpl.h b/dom/file/BaseBlobImpl.h index 7265fc2104..860421c56a 100644 --- a/dom/file/BaseBlobImpl.h +++ b/dom/file/BaseBlobImpl.h @@ -8,6 +8,7 @@ #define mozilla_dom_BaseBlobImpl_h #include "nsIGlobalObject.h" +#include "mozilla/dom/Blob.h" #include "mozilla/dom/BlobImpl.h" #include "mozilla/ErrorResult.h" @@ -29,8 +30,7 @@ class BaseBlobImpl : public BlobImpl { mLength(aLength), mSerialNumber(NextSerialNumber()), mLastModificationDate(aLastModifiedDate) { - // Ensure non-null mContentType by default - mContentType.SetIsVoid(false); + dom::Blob::MakeValidBlobType(mContentType); } // Blob constructor without starting point. @@ -41,8 +41,7 @@ class BaseBlobImpl : public BlobImpl { mLength(aLength), mSerialNumber(NextSerialNumber()), mLastModificationDate(0) { - // Ensure non-null mContentType by default - mContentType.SetIsVoid(false); + dom::Blob::MakeValidBlobType(mContentType); } // Blob constructor with starting point. @@ -53,8 +52,7 @@ class BaseBlobImpl : public BlobImpl { mLength(aLength), mSerialNumber(NextSerialNumber()), mLastModificationDate(0) { - // Ensure non-null mContentType by default - mContentType.SetIsVoid(false); + dom::Blob::MakeValidBlobType(mContentType); } void GetName(nsAString& aName) const override; -- cgit v1.2.3