| Index: Source/modules/webaudio/AudioParam.h
|
| diff --git a/Source/modules/webaudio/AudioParam.h b/Source/modules/webaudio/AudioParam.h
|
| index 233bebf200bdb84084dfd528a49b0ac4792865da..054752f4df6e68664eb2d09b37e7c557fe257eb5 100644
|
| --- a/Source/modules/webaudio/AudioParam.h
|
| +++ b/Source/modules/webaudio/AudioParam.h
|
| @@ -29,6 +29,7 @@
|
| #ifndef AudioParam_h
|
| #define AudioParam_h
|
|
|
| +#include "bindings/v8/ScriptWrappable.h"
|
| #include "modules/webaudio/AudioContext.h"
|
| #include "modules/webaudio/AudioParamTimeline.h"
|
| #include "modules/webaudio/AudioSummingJunction.h"
|
| @@ -42,7 +43,7 @@ namespace WebCore {
|
|
|
| class AudioNodeOutput;
|
|
|
| -class AudioParam : public AudioSummingJunction, public RefCounted<AudioParam> {
|
| +class AudioParam : public RefCounted<AudioParam>, public ScriptWrappable, public AudioSummingJunction {
|
| public:
|
| static const double DefaultSmoothingConstant;
|
| static const double SnapThreshold;
|
| @@ -114,6 +115,7 @@ protected:
|
| , m_smoothedValue(defaultValue)
|
| , m_smoothingConstant(DefaultSmoothingConstant)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| private:
|
|
|