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

Unified Diff: Source/platform/exported/WebSpeechSynthesizerClientImpl.h

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ Created 6 years, 4 months 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/platform/exported/WebSpeechSynthesizerClientImpl.h
diff --git a/Source/platform/exported/WebSpeechSynthesizerClientImpl.h b/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
index b524e4a96c4eb1020fbaeb22d9de7546087d6274..29b829ae8e735cebbd57c3a16d783b22416d6824 100644
--- a/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
+++ b/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
@@ -37,19 +37,19 @@ namespace blink {
class PlatformSpeechSynthesizer;
class PlatformSpeechSynthesizerClient;
-class WebSpeechSynthesizerClientImpl FINAL : public GarbageCollectedFinalized<WebSpeechSynthesizerClientImpl>, public blink::WebSpeechSynthesizerClient {
+class WebSpeechSynthesizerClientImpl FINAL : public GarbageCollectedFinalized<WebSpeechSynthesizerClientImpl>, public WebSpeechSynthesizerClient {
public:
WebSpeechSynthesizerClientImpl(PlatformSpeechSynthesizer*, PlatformSpeechSynthesizerClient*);
virtual ~WebSpeechSynthesizerClientImpl();
- 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);
+ virtual void setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices);
+ virtual void didStartSpeaking(const WebSpeechSynthesisUtterance&);
+ virtual void didFinishSpeaking(const WebSpeechSynthesisUtterance&);
+ virtual void didPauseSpeaking(const WebSpeechSynthesisUtterance&);
+ virtual void didResumeSpeaking(const WebSpeechSynthesisUtterance&);
+ virtual void speakingErrorOccurred(const WebSpeechSynthesisUtterance&);
+ virtual void wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex);
+ virtual void sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex);
void trace(Visitor*);
« no previous file with comments | « Source/platform/exported/WebSpeechSynthesisVoice.cpp ('k') | Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698