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

Unified Diff: Source/modules/webaudio/OscillatorNode.h

Issue 438293003: Enable Oilpan by default for webaudio/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webaudio/OfflineAudioDestinationNode.cpp ('k') | Source/modules/webaudio/OscillatorNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/OscillatorNode.h
diff --git a/Source/modules/webaudio/OscillatorNode.h b/Source/modules/webaudio/OscillatorNode.h
index 93dedeec4bdea682d8e28c9de48b6adff2c87cbf..b747c26eb48a68b97826442bf8613e8f724ef5b5 100644
--- a/Source/modules/webaudio/OscillatorNode.h
+++ b/Source/modules/webaudio/OscillatorNode.h
@@ -52,7 +52,7 @@ public:
CUSTOM = 4
};
- static PassRefPtrWillBeRawPtr<OscillatorNode> create(AudioContext*, float sampleRate);
+ static OscillatorNode* create(AudioContext*, float sampleRate);
virtual ~OscillatorNode();
@@ -85,10 +85,10 @@ private:
unsigned short m_type;
// Frequency value in Hertz.
- RefPtrWillBeMember<AudioParam> m_frequency;
+ Member<AudioParam> m_frequency;
// Detune value (deviating from the frequency) in Cents.
- RefPtrWillBeMember<AudioParam> m_detune;
+ Member<AudioParam> m_detune;
bool m_firstRender;
@@ -103,7 +103,7 @@ private:
AudioFloatArray m_phaseIncrements;
AudioFloatArray m_detuneValues;
- RefPtrWillBeMember<PeriodicWave> m_periodicWave;
+ Member<PeriodicWave> m_periodicWave;
};
} // namespace blink
« no previous file with comments | « Source/modules/webaudio/OfflineAudioDestinationNode.cpp ('k') | Source/modules/webaudio/OscillatorNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698