The Blink Rename

This commit is contained in:
Aleksei Kuzmin 2017-06-16 23:42:33 +03:00
parent 3939359354
commit 7a4ca08a8d
32 changed files with 452 additions and 450 deletions

View file

@ -38,12 +38,12 @@ class TtsDispatcher
virtual bool OnControlMessageReceived(const IPC::Message& message) override;
// blink::WebSpeechSynthesizer implementation.
virtual void updateVoiceList() override;
virtual void speak(const blink::WebSpeechSynthesisUtterance& utterance)
virtual void UpdateVoiceList() override;
virtual void Speak(const blink::WebSpeechSynthesisUtterance& utterance)
override;
virtual void pause() override;
virtual void resume() override;
virtual void cancel() override;
virtual void Pause() override;
virtual void Resume() override;
virtual void Cancel() override;
blink::WebSpeechSynthesisUtterance FindUtterance(int utterance_id);