mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 07:15:36 -04:00
36 lines
878 B
C++
36 lines
878 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_BlobSet_h
|
|
#define mozilla_dom_BlobSet_h
|
|
|
|
#include "jsapi.h"
|
|
#include "mozilla/RefPtr.h"
|
|
#include "nsString.h"
|
|
#include "nsTArray.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class BlobImpl;
|
|
|
|
class BlobSet final {
|
|
public:
|
|
MOZ_MUST_USE nsresult AppendVoidPtr(const void* aData, uint32_t aLength);
|
|
|
|
MOZ_MUST_USE nsresult AppendString(const nsAString& aString, bool nativeEOL);
|
|
|
|
MOZ_MUST_USE nsresult AppendBlobImpl(BlobImpl* aBlobImpl);
|
|
|
|
FallibleTArray<RefPtr<BlobImpl>>& GetBlobImpls() { return mBlobImpls; }
|
|
|
|
private:
|
|
FallibleTArray<RefPtr<BlobImpl>> mBlobImpls;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_BlobSet_h
|