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

Unified Diff: chrome/browser/speech/tts_android.h

Issue 885283009: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: chrome/browser/speech/tts_android.h
diff --git a/chrome/browser/speech/tts_android.h b/chrome/browser/speech/tts_android.h
index 898418bb8c8b99fbfcd67e10e012660fae37a689..6dcf02b4fa79c05dedd470f8ce30fc72ae3e5187 100644
--- a/chrome/browser/speech/tts_android.h
+++ b/chrome/browser/speech/tts_android.h
@@ -12,18 +12,17 @@
class TtsPlatformImplAndroid : public TtsPlatformImpl {
public:
// TtsPlatformImpl implementation.
- virtual bool PlatformImplAvailable() override;
- virtual bool Speak(
- int utterance_id,
- const std::string& utterance,
- const std::string& lang,
- const VoiceData& voice,
- const UtteranceContinuousParameters& params) override;
- virtual bool StopSpeaking() override;
- virtual void Pause() override;
- virtual void Resume() override;
- virtual bool IsSpeaking() override;
- virtual void GetVoices(std::vector<VoiceData>* out_voices) override;
+ bool PlatformImplAvailable() override;
+ bool Speak(int utterance_id,
+ const std::string& utterance,
+ const std::string& lang,
+ const VoiceData& voice,
+ const UtteranceContinuousParameters& params) override;
+ bool StopSpeaking() override;
+ void Pause() override;
+ void Resume() override;
+ bool IsSpeaking() override;
+ void GetVoices(std::vector<VoiceData>* out_voices) override;
// Methods called from Java via JNI.
void VoicesChanged(JNIEnv* env, jobject obj);
@@ -39,7 +38,7 @@ class TtsPlatformImplAndroid : public TtsPlatformImpl {
friend struct DefaultSingletonTraits<TtsPlatformImplAndroid>;
TtsPlatformImplAndroid();
- virtual ~TtsPlatformImplAndroid();
+ ~TtsPlatformImplAndroid() override;
void SendFinalTtsEvent(
int utterance_id, TtsEventType event_type, int char_index);
« no previous file with comments | « chrome/browser/signin/android_profile_oauth2_token_service.cc ('k') | chrome/browser/sync/glue/synced_tab_delegate_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698