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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h b/third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h
index e3c35b3f7ad84cf01e6b774363ca3bb7f2d50b00..f782ba409bbe73894d6b237df20aba5db06da09e 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioProcessingEvent.h
@@ -37,8 +37,8 @@ class AudioBuffer;
class AudioProcessingEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create();
- static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime);
+ static RawPtr<AudioProcessingEvent> create();
+ static RawPtr<AudioProcessingEvent> create(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime);
~AudioProcessingEvent() override;
@@ -54,8 +54,8 @@ private:
AudioProcessingEvent();
AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, double playbackTime);
- PersistentWillBeMember<AudioBuffer> m_inputBuffer;
- PersistentWillBeMember<AudioBuffer> m_outputBuffer;
+ Member<AudioBuffer> m_inputBuffer;
+ Member<AudioBuffer> m_outputBuffer;
double m_playbackTime;
};

Powered by Google App Engine
This is Rietveld 408576698