Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / speech / PlatformSpeechSynthesizer.h
index 00209ba..b2c9c8a 100644 (file)
@@ -36,7 +36,7 @@ class WebSpeechSynthesizer;
 class WebSpeechSynthesizerClient;
 }
 
-namespace WebCore {
+namespace blink {
 
 enum SpeechBoundary {
     SpeechWordBoundary,
@@ -56,7 +56,6 @@ public:
     virtual void boundaryEventOccurred(PlatformSpeechSynthesisUtterance*, SpeechBoundary, unsigned charIndex) = 0;
     virtual void voicesDidChange() = 0;
 
-    virtual void trace(Visitor*) { }
 protected:
     virtual ~PlatformSpeechSynthesizerClient() { }
 };
@@ -91,9 +90,9 @@ private:
     Member<PlatformSpeechSynthesizerClient> m_speechSynthesizerClient;
 
     OwnPtr<blink::WebSpeechSynthesizer> m_webSpeechSynthesizer;
-    Member<WebCore::WebSpeechSynthesizerClientImpl> m_webSpeechSynthesizerClient;
+    Member<blink::WebSpeechSynthesizerClientImpl> m_webSpeechSynthesizerClient;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // PlatformSpeechSynthesizer_h