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

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

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() Created 6 years, 3 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.cpp
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.cpp b/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
index e58f89f80b092cf4821710ee3b58742da3b08569..a8e0a67ad574e8cd4953f28db2de51973fc51507 100644
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
@@ -42,9 +42,7 @@ DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(LocalDOMWindow& window)
{
}
-DOMWindowSpeechSynthesis::~DOMWindowSpeechSynthesis()
-{
-}
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowSpeechSynthesis);
const char* DOMWindowSpeechSynthesis::supplementName()
{
@@ -79,6 +77,7 @@ void DOMWindowSpeechSynthesis::trace(Visitor* visitor)
{
visitor->trace(m_speechSynthesis);
WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
+ DOMWindowProperty::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698