Index: third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp |
diff --git a/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp b/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp |
index c6e7e776ec3ae31db7d4184e80071cd05d96e14d..24404ce6589d432f2a4fbbf82338e0c88c003298 100644 |
--- a/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp |
+++ b/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp |
@@ -49,7 +49,7 @@ const char* DOMWindowSpeechSynthesis::supplementName() |
// static |
DOMWindowSpeechSynthesis& DOMWindowSpeechSynthesis::from(LocalDOMWindow& window) |
{ |
- DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(HeapSupplement<LocalDOMWindow>::from(window, supplementName())); |
+ DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(Supplement<LocalDOMWindow>::from(window, supplementName())); |
if (!supplement) { |
supplement = new DOMWindowSpeechSynthesis(window); |
provideTo(window, supplementName(), supplement); |
@@ -73,7 +73,7 @@ SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis() |
DEFINE_TRACE(DOMWindowSpeechSynthesis) |
{ |
visitor->trace(m_speechSynthesis); |
- HeapSupplement<LocalDOMWindow>::trace(visitor); |
+ Supplement<LocalDOMWindow>::trace(visitor); |
DOMWindowProperty::trace(visitor); |
} |