Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1079)

Unified Diff: Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h
diff --git a/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h b/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h
index 91681a1ca904d063b79ead2403260c67ce5288b3..f70c2d2219808b611b8d6b987ff697d13596c716 100644
--- a/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h
+++ b/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h
@@ -38,19 +38,19 @@ namespace WebCore {
class PlatformSpeechSynthesizer;
class PlatformSpeechSynthesizerClient;
-class WebSpeechSynthesizerClientImpl : public WebKit::WebSpeechSynthesizerClient {
+class WebSpeechSynthesizerClientImpl : public blink::WebSpeechSynthesizerClient {
public:
explicit WebSpeechSynthesizerClientImpl(PlatformSpeechSynthesizer*, PlatformSpeechSynthesizerClient*);
virtual ~WebSpeechSynthesizerClientImpl();
- virtual void setVoiceList(const WebKit::WebVector<WebKit::WebSpeechSynthesisVoice>& voices);
- virtual void didStartSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
- virtual void didFinishSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
- virtual void didPauseSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
- virtual void didResumeSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
- virtual void speakingErrorOccurred(const WebKit::WebSpeechSynthesisUtterance&);
- virtual void wordBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex);
- virtual void sentenceBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex);
+ virtual void setVoiceList(const blink::WebVector<blink::WebSpeechSynthesisVoice>& voices);
+ virtual void didStartSpeaking(const blink::WebSpeechSynthesisUtterance&);
+ virtual void didFinishSpeaking(const blink::WebSpeechSynthesisUtterance&);
+ virtual void didPauseSpeaking(const blink::WebSpeechSynthesisUtterance&);
+ virtual void didResumeSpeaking(const blink::WebSpeechSynthesisUtterance&);
+ virtual void speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance&);
+ virtual void wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex);
+ virtual void sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex);
private:
PlatformSpeechSynthesizer* m_synthesizer;

Powered by Google App Engine
This is Rietveld 408576698