Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / push / PushUtil.h
blob1e4ccf33a91e47800c20e0bb193b13a6c4c184c1
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_PushUtil_h
8 #define mozilla_dom_PushUtil_h
10 #include "nsTArray.h"
12 #include "mozilla/dom/TypedArray.h"
14 namespace mozilla {
15 class ErrorResult;
17 namespace dom {
19 class OwningArrayBufferViewOrArrayBuffer;
21 class PushUtil final {
22 private:
23 PushUtil() = delete;
25 public:
26 static bool CopyBufferSourceToArray(
27 const OwningArrayBufferViewOrArrayBuffer& aSource,
28 nsTArray<uint8_t>& aArray);
30 static void CopyArrayToArrayBuffer(JSContext* aCx,
31 const nsTArray<uint8_t>& aArray,
32 JS::MutableHandle<JSObject*> aValue,
33 ErrorResult& aRv);
36 } // namespace dom
37 } // namespace mozilla
39 #endif // mozilla_dom_PushUtil_h