Index: Source/platform/speech/PlatformSpeechSynthesizer.h |
diff --git a/Source/platform/speech/PlatformSpeechSynthesizer.h b/Source/platform/speech/PlatformSpeechSynthesizer.h |
index b2c9c8a406ab9fe9cf608c9e185b4836ad8f03e3..1e07d7acb5f148ded591cf5a969688ea80dfed5f 100644 |
--- a/Source/platform/speech/PlatformSpeechSynthesizer.h |
+++ b/Source/platform/speech/PlatformSpeechSynthesizer.h |
@@ -32,11 +32,6 @@ |
#include "wtf/Vector.h" |
namespace blink { |
-class WebSpeechSynthesizer; |
-class WebSpeechSynthesizerClient; |
-} |
- |
-namespace blink { |
enum SpeechBoundary { |
SpeechWordBoundary, |
@@ -44,6 +39,8 @@ enum SpeechBoundary { |
}; |
class PlatformSpeechSynthesisUtterance; |
+class WebSpeechSynthesizer; |
+class WebSpeechSynthesizerClient; |
class WebSpeechSynthesizerClientImpl; |
class PlatformSpeechSynthesizerClient : public GarbageCollectedMixin { |
@@ -89,8 +86,8 @@ protected: |
private: |
Member<PlatformSpeechSynthesizerClient> m_speechSynthesizerClient; |
- OwnPtr<blink::WebSpeechSynthesizer> m_webSpeechSynthesizer; |
- Member<blink::WebSpeechSynthesizerClientImpl> m_webSpeechSynthesizerClient; |
+ OwnPtr<WebSpeechSynthesizer> m_webSpeechSynthesizer; |
+ Member<WebSpeechSynthesizerClientImpl> m_webSpeechSynthesizerClient; |
}; |
} // namespace blink |