blob: 70cd0450828828d4264994376265f8cd0cc45549 [file] [log] [blame]
// 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.
// See: https://webaudio.github.io/web-audio-api/#idl-def-AudioParamDescriptor
dictionary AudioParamDescriptor {
required DOMString name;
float defaultValue = 0;
// TODO(hongchan): These numbers are minimum/maximum number possible for
// |float| type. Remove this comment when the spec is fixed.
float minValue = -3.4028235e38;
float maxValue = 3.4028235e38;
};