Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/PannerOptions.idl

Issue 2536603003: Some PannerOptions dictionary members should be doubles (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/constructor/panner.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // See https://webaudio.github.io/web-audio-api/#panneroptions 5 // See https://webaudio.github.io/web-audio-api/#panneroptions
6 dictionary PannerOptions : AudioNodeOptions { 6 dictionary PannerOptions : AudioNodeOptions {
7 PanningModelType panningModel; 7 PanningModelType panningModel;
8 DistanceModelType distanceModel; 8 DistanceModelType distanceModel;
9 9
10 float positionX; 10 float positionX;
11 float positionY; 11 float positionY;
12 float positionZ; 12 float positionZ;
13 float orientationX; 13 float orientationX;
14 float orientationY; 14 float orientationY;
15 float orientationZ; 15 float orientationZ;
16 16
17 float refDistance; 17 double refDistance;
18 float maxDistance; 18 double maxDistance;
19 float rolloffFactor; 19 double rolloffFactor;
20 float coneInnerAngle; 20 double coneInnerAngle;
21 float coneOuterAngle; 21 double coneOuterAngle;
22 float coneOuterGain; 22 double coneOuterGain;
23 }; 23 };
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/constructor/panner.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698