Files
tubestation/toolkit/components/uniffi-js/UniFFIScaffolding.h
Ben Dean-Kawamura 4903d7ae18 Bug 1766045 - Fixes to make the hybrid builds work r=markh,teshaq
This is a repsonse to the build errors I noticed with
build-macosx64-hybrid/plain, build-win64-hybrid/plain, and
build-linux64-hybrid/plain.

I'm not exactly sure why those build had errors but others didn't, but
my guess is that it was a combination of:
  - A clang++ producing different warnings/errors.
  - The uniffied builds being arranged slightly differently, which
    surfaced errors based on missing include statements.

Differential Revision: https://phabricator.services.mozilla.com/D153414
2022-08-03 18:59:38 +00:00

45 lines
1.6 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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_UniFFI_h
#define mozilla_dom_UniFFI_h
#include "mozilla/ErrorResult.h"
#include "mozilla/dom/RootedDictionary.h"
#include "mozilla/dom/TypedArray.h"
#include "mozilla/dom/UniFFIBinding.h"
namespace mozilla::dom {
using ScaffoldingType = OwningDoubleOrArrayBufferOrUniFFIPointer;
// Handle functions defined in UniFFIScaffolding.webidl
class UniFFIScaffolding {
public:
static already_AddRefed<Promise> CallAsync(
const GlobalObject& aUniFFIGlobal, uint64_t aId,
const Sequence<ScaffoldingType>& aArgs, ErrorResult& aUniFFIErrorResult);
static void CallSync(
const GlobalObject& aUniFFIGlobal, uint64_t aId,
const Sequence<ScaffoldingType>& aArgs,
RootedDictionary<UniFFIScaffoldingCallResult>& aUniFFIReturnValue,
ErrorResult& aUniFFIErrorResult);
static already_AddRefed<UniFFIPointer> ReadPointer(
const GlobalObject& aUniFFIGlobal, uint64_t aId,
const ArrayBuffer& aArrayBuff, long aPosition, ErrorResult& aError);
static void WritePointer(const GlobalObject& aUniFFIGlobal, uint64_t aId,
const UniFFIPointer& aPtr,
const ArrayBuffer& aArrayBuff, long aPosition,
ErrorResult& aError);
};
} // namespace mozilla::dom
#endif /* mozilla_dom_UniFFI_h */