summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/blink/renderer/modules/webaudio/constant_source_node.idl
blob: 0bc1ab3c1318f6b86ea225546a2a47e29e3fb2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2016 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.

// https://webaudio.github.io/web-audio-api/#ConstantSourceNode
[
    Exposed=Window,
    ActiveScriptWrappable
] interface ConstantSourceNode : AudioScheduledSourceNode {
    [RaisesException, Measure] constructor(BaseAudioContext context, optional ConstantSourceOptions options = {});
    readonly attribute AudioParam offset;
};