Index: Source/modules/speech/DOMWindowSpeechSynthesis.h |
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.h b/Source/modules/speech/DOMWindowSpeechSynthesis.h |
index 83310c7ff362fa502001e5e1e3e36994608102ef..865bdb1e7cccd13cf9ca8dd2c8e83a3b49e50f2f 100644 |
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.h |
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.h |
@@ -33,20 +33,20 @@ |
namespace WebCore { |
-class DOMWindow; |
+class LocalDOMWindow; |
-class DOMWindowSpeechSynthesis FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty { |
+class DOMWindowSpeechSynthesis FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowSpeechSynthesis>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty { |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowSpeechSynthesis); |
public: |
virtual ~DOMWindowSpeechSynthesis(); |
- static SpeechSynthesis* speechSynthesis(DOMWindow&); |
- static DOMWindowSpeechSynthesis& from(DOMWindow&); |
+ static SpeechSynthesis* speechSynthesis(LocalDOMWindow&); |
+ static DOMWindowSpeechSynthesis& from(LocalDOMWindow&); |
void trace(Visitor*); |
private: |
- explicit DOMWindowSpeechSynthesis(DOMWindow&); |
+ explicit DOMWindowSpeechSynthesis(LocalDOMWindow&); |
SpeechSynthesis* speechSynthesis(); |
static const char* supplementName(); |