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

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

Issue 1533103002: Implement cancelValuesAndHoldAtTime (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 3 years, 11 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // Exponentially approach the target with a rate having the given time const ant. 43 // Exponentially approach the target with a rate having the given time const ant.
44 [RaisesException, MeasureAs=AudioParamSetTargetAtTime] AudioParam setTargetA tTime(float target, double time, double timeConstant); 44 [RaisesException, MeasureAs=AudioParamSetTargetAtTime] AudioParam setTargetA tTime(float target, double time, double timeConstant);
45 45
46 // Sets an array of arbitrary parameter values starting at time for the give n duration. 46 // Sets an array of arbitrary parameter values starting at time for the give n duration.
47 // The number of values will be scaled to fit into the desired duration. 47 // The number of values will be scaled to fit into the desired duration.
48 [RaisesException, MeasureAs=AudioParamSetValueCurveAtTime] AudioParam setVal ueCurveAtTime(Float32Array values, double time, double duration); 48 [RaisesException, MeasureAs=AudioParamSetValueCurveAtTime] AudioParam setVal ueCurveAtTime(Float32Array values, double time, double duration);
49 49
50 // Cancels all scheduled parameter changes with times greater than or equal to startTime. 50 // Cancels all scheduled parameter changes with times greater than or equal to startTime.
51 [RaisesException, MeasureAs=AudioParamCancelScheduledValues] AudioParam canc elScheduledValues(double startTime); 51 [RaisesException, MeasureAs=AudioParamCancelScheduledValues] AudioParam canc elScheduledValues(double startTime);
52 52
53 // Cancel scheduled parameter changes and hold the last value
54 [RaisesException] AudioParam cancelValuesAndHoldAtTime(double startTime);
55
53 }; 56 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698