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

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

Issue 205173002: Move webaudio to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 7 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 2e6187b68a4b4709aa5c9a8feb25a601c69f39f1..64b6448de123b66333a8f56045e56e589859e88d 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(PassRefPtr<AudioBuffer> renderedBuffer);
+ static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(PassRefPtrWillBeRawPtr<AudioBuffer> renderedBuffer);
virtual ~OfflineAudioCompletionEvent();
@@ -49,9 +49,9 @@ public:
private:
OfflineAudioCompletionEvent();
- explicit OfflineAudioCompletionEvent(PassRefPtr<AudioBuffer> renderedBuffer);
+ explicit OfflineAudioCompletionEvent(PassRefPtrWillBeRawPtr<AudioBuffer> renderedBuffer);
- RefPtr<AudioBuffer> m_renderedBuffer;
+ RefPtrWillBeMember<AudioBuffer> m_renderedBuffer;
};
} // namespace WebCore
« 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