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

Unified Diff: Source/modules/speech/DOMWindowSpeechSynthesis.h

Issue 139803012: Move speech module over to Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make SpeechSynthesisVoice GC-finalized Created 6 years, 10 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/speech/DOMWindowSpeechSynthesis.h
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.h b/Source/modules/speech/DOMWindowSpeechSynthesis.h
index 8c6c836378675fd5a8ed1d78062a7ee249a23148..b940a5cc06125d52a811858eb8a0dfce42419213 100644
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.h
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.h
@@ -27,6 +27,7 @@
#define DOMWindowSpeechSynthesis_h
#include "core/frame/DOMWindowProperty.h"
+#include "heap/Handle.h"
#include "modules/speech/SpeechSynthesis.h"
#include "platform/Supplementable.h"
@@ -47,7 +48,7 @@ private:
SpeechSynthesis* speechSynthesis();
static const char* supplementName();
- RefPtr<SpeechSynthesis> m_speechSynthesis;
+ RefPtrWillBePersistent<SpeechSynthesis> m_speechSynthesis;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698