blob: 9a587c7a3c15b5620afbf368972ec4fdb7030038 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is only used when the new C++ implementation is enabled.
// https://streams.spec.whatwg.org/#rs-default-controller-class-definition
[
Exposed=(Window,Worker,Worklet),
NoInterfaceObject,
RaisesException=Constructor
] interface ReadableStreamDefaultController {
[CallWith=ScriptState, NotEnumerable] void close();
[CallWith=ScriptState, NotEnumerable, RaisesException] void enqueue(
optional any chunk);
[CallWith=ScriptState, NotEnumerable] void error(optional any e);
};