| Index: Source/modules/webaudio/OscillatorNode.h
|
| diff --git a/Source/modules/webaudio/OscillatorNode.h b/Source/modules/webaudio/OscillatorNode.h
|
| index 9f02d52a95c4a9c25325f7aa1397e2a3a48b5bdd..21812e264899deb20959d8c3fc30321c6863be50 100644
|
| --- a/Source/modules/webaudio/OscillatorNode.h
|
| +++ b/Source/modules/webaudio/OscillatorNode.h
|
| @@ -81,10 +81,10 @@ private:
|
| unsigned short m_type;
|
|
|
| // Frequency value in Hertz.
|
| - RefPtr<AudioParam> m_frequency;
|
| + RefPtrWillBePersistent<AudioParam> m_frequency;
|
|
|
| // Detune value (deviating from the frequency) in Cents.
|
| - RefPtr<AudioParam> m_detune;
|
| + RefPtrWillBePersistent<AudioParam> m_detune;
|
|
|
| bool m_firstRender;
|
|
|
| @@ -99,7 +99,7 @@ private:
|
| AudioFloatArray m_phaseIncrements;
|
| AudioFloatArray m_detuneValues;
|
|
|
| - RefPtr<PeriodicWave> m_periodicWave;
|
| + RefPtrWillBePersistent<PeriodicWave> m_periodicWave;
|
| };
|
|
|
| } // namespace WebCore
|
|
|