| Index: third_party/WebKit/Source/modules/webaudio/AudioWorkletNode.idl
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorkletNode.idl b/third_party/WebKit/Source/modules/webaudio/AudioWorkletNode.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..86fe7876e390e38bd72c859c7db3b564e7f19287
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/webaudio/AudioWorkletNode.idl
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2017 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/#AudioWorkletNode
|
| +
|
| +[
|
| + Exposed=AudioWorklet,
|
| + Global=(Worklet,AudioWorklet),
|
| + RuntimeEnabled=AudioWorklet,
|
| + ActiveScriptWrappable,
|
| + DependentLifetime,
|
| + Constructor(BaseAudioContext context, DOMString name),
|
| + RaisesException=Constructor,
|
| +] interface AudioWorkletNode : AudioNode {
|
| + readonly attribute AudioParamMap parameters;
|
| +};
|
|
|