gecko-dev/netwerk/base/nsIArrayBufferInputStream.idl
Jan de Mooij 14360fdec6 Bug 1674777 part 8 - Change nsIArrayBufferInputStream.setData arguments from uint32_t to uint64_t. r=kmag
Similar to the previous patch. Prevent truncation when assigning to mBufferLength.

Differential Revision: https://phabricator.services.mozilla.com/D103760
2021-02-10 08:30:05 +00:00

26 lines
866 B
Plaintext

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "nsIInputStream.idl"
/**
* nsIArrayBufferInputStream
*
* Provides scriptable methods for initializing a nsIInputStream
* implementation with an ArrayBuffer.
*/
[scriptable, uuid(3014dde6-aa1c-41db-87d0-48764a3710f6)]
interface nsIArrayBufferInputStream : nsIInputStream
{
/**
* SetData - assign an ArrayBuffer to the input stream.
*
* @param buffer - stream data
* @param byteOffset - stream data offset
* @param byteLen - stream data length
*/
void setData(in jsval buffer, in uint64_t byteOffset, in uint64_t byteLen);
};