Bug 1756164: part 2) Document the order of the external clipboard formats and remove...
[gecko.git] / dom / file / BlobSet.h
blob08cc0fdd2edc24fab19b7c529641a5d24f8f9a45
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_BlobSet_h
8 #define mozilla_dom_BlobSet_h
10 #include "jsapi.h"
11 #include "mozilla/RefPtr.h"
12 #include "nsString.h"
13 #include "nsTArray.h"
15 namespace mozilla {
16 namespace dom {
18 class BlobImpl;
20 class BlobSet final {
21 public:
22 [[nodiscard]] nsresult AppendVoidPtr(const void* aData, uint32_t aLength);
24 [[nodiscard]] nsresult AppendString(const nsAString& aString, bool nativeEOL);
26 [[nodiscard]] nsresult AppendBlobImpl(BlobImpl* aBlobImpl);
28 FallibleTArray<RefPtr<BlobImpl>>& GetBlobImpls() { return mBlobImpls; }
30 private:
31 FallibleTArray<RefPtr<BlobImpl>> mBlobImpls;
34 } // namespace dom
35 } // namespace mozilla
37 #endif // mozilla_dom_BlobSet_h