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

Unified Diff: Source/modules/webaudio/OfflineAudioCompletionEvent.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
Index: Source/modules/webaudio/OfflineAudioCompletionEvent.h
diff --git a/Source/modules/webaudio/OfflineAudioCompletionEvent.h b/Source/modules/webaudio/OfflineAudioCompletionEvent.h
index af5e430ea64b2b45ab6b479a341ff54f1f60fee2..e3ca0bbe63305dca8621ddd87b138acdb864ee48 100644
--- a/Source/modules/webaudio/OfflineAudioCompletionEvent.h
+++ b/Source/modules/webaudio/OfflineAudioCompletionEvent.h
@@ -37,7 +37,7 @@ class AudioBuffer;
class OfflineAudioCompletionEvent FINAL : public Event {
public:
static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create();
- static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(PassRefPtrWillBeRawPtr<AudioBuffer> renderedBuffer);
+ static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(AudioBuffer* renderedBuffer);
virtual ~OfflineAudioCompletionEvent();
@@ -49,9 +49,9 @@ public:
private:
OfflineAudioCompletionEvent();
- explicit OfflineAudioCompletionEvent(PassRefPtrWillBeRawPtr<AudioBuffer> renderedBuffer);
+ explicit OfflineAudioCompletionEvent(AudioBuffer* renderedBuffer);
- RefPtrWillBeMember<AudioBuffer> m_renderedBuffer;
+ PersistentWillBeMember<AudioBuffer> m_renderedBuffer;
};
} // namespace blink
« no previous file with comments | « Source/modules/webaudio/MediaStreamAudioSourceNode.cpp ('k') | Source/modules/webaudio/OfflineAudioCompletionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698