| 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 5ef27d3731f50e5d116fe3ece792ff9d4e799e3e..b992182efeb0d74ce14623d223105ecf823842b5 100644
|
| --- a/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
|
| +++ b/third_party/WebKit/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
|
| @@ -37,7 +37,7 @@
|
| namespace blink {
|
|
|
| DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(LocalDOMWindow& window)
|
| - : DOMWindowProperty(window.frame()) {}
|
| + : ContextClient(window.frame()) {}
|
|
|
| const char* DOMWindowSpeechSynthesis::supplementName() {
|
| return "DOMWindowSpeechSynthesis";
|
| @@ -71,7 +71,7 @@ SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis() {
|
| DEFINE_TRACE(DOMWindowSpeechSynthesis) {
|
| visitor->trace(m_speechSynthesis);
|
| Supplement<LocalDOMWindow>::trace(visitor);
|
| - DOMWindowProperty::trace(visitor);
|
| + ContextClient::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|