Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / webaudio / AudioParamTimeline.h
index 916fd73..afc1d4f 100644 (file)
@@ -43,12 +43,12 @@ public:
     {
     }
 
-    void setValueAtTime(float value, double time);
-    void linearRampToValueAtTime(float value, double time);
+    void setValueAtTime(float value, double time, ExceptionState&);
+    void linearRampToValueAtTime(float value, double time, ExceptionState&);
     void exponentialRampToValueAtTime(float value, double time, ExceptionState&);
-    void setTargetAtTime(float target, double time, double timeConstant);
-    void setValueCurveAtTime(Float32Array* curve, double time, double duration);
-    void cancelScheduledValues(double startTime);
+    void setTargetAtTime(float target, double time, double timeConstant, ExceptionState&);
+    void setValueCurveAtTime(Float32Array* curve, double time, double duration, ExceptionState&);
+    void cancelScheduledValues(double startTime, ExceptionState&);
 
     // hasValue is set to true if a valid timeline value is returned.
     // otherwise defaultValue is returned.