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

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

Issue 1233173002: Have ScriptPromiseResolver on the Oilpan heap always. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: keepAliveWhilePending() comment Created 5 years, 5 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/AbstractAudioContext.h
diff --git a/Source/modules/webaudio/AbstractAudioContext.h b/Source/modules/webaudio/AbstractAudioContext.h
index 5994c223ef747ca2a9a8fd28584233c983c62d91..b4f6f229424f61afb08788fdf18e9fb3a594be88 100644
--- a/Source/modules/webaudio/AbstractAudioContext.h
+++ b/Source/modules/webaudio/AbstractAudioContext.h
@@ -243,13 +243,13 @@ protected:
virtual void didClose() {}
void uninitialize();
- RefPtrWillBeMember<ScriptPromiseResolver> m_offlineResolver;
+ Member<ScriptPromiseResolver> m_offlineResolver;
// FIXME(dominicc): Move m_resumeResolvers to AudioContext, because only
// it creates these Promises.
// Vector of promises created by resume(). It takes time to handle them, so we collect all of
// the promises here until they can be resolved or rejected.
- WillBeHeapVector<RefPtrWillBeMember<ScriptPromiseResolver>> m_resumeResolvers;
+ HeapVector<Member<ScriptPromiseResolver>> m_resumeResolvers;
private:
void initialize();

Powered by Google App Engine
This is Rietveld 408576698