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

Unified Diff: content/browser/speech/audio_encoder.cc

Issue 631083002: Replacing the OVERRIDE with override and FINAL with final in content/browser/speech (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | content/browser/speech/endpointer/endpointer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/speech/audio_encoder.cc
diff --git a/content/browser/speech/audio_encoder.cc b/content/browser/speech/audio_encoder.cc
index db8e2015c1dd625d5edeb09205863f7f0a1f9545..cf9f72dacc9fc6c9c7e41e574503873ae2f0992e 100644
--- a/content/browser/speech/audio_encoder.cc
+++ b/content/browser/speech/audio_encoder.cc
@@ -25,8 +25,8 @@ class FLACEncoder : public AudioEncoder {
public:
FLACEncoder(int sampling_rate, int bits_per_sample);
virtual ~FLACEncoder();
- virtual void Encode(const AudioChunk& raw_audio) OVERRIDE;
- virtual void Flush() OVERRIDE;
+ virtual void Encode(const AudioChunk& raw_audio) override;
+ virtual void Flush() override;
private:
static FLAC__StreamEncoderWriteStatus WriteCallback(
@@ -114,8 +114,8 @@ class SpeexEncoder : public AudioEncoder {
public:
explicit SpeexEncoder(int sampling_rate, int bits_per_sample);
virtual ~SpeexEncoder();
- virtual void Encode(const AudioChunk& raw_audio) OVERRIDE;
- virtual void Flush() OVERRIDE {}
+ virtual void Encode(const AudioChunk& raw_audio) override;
+ virtual void Flush() override {}
private:
void* encoder_state_;
« no previous file with comments | « no previous file | content/browser/speech/endpointer/endpointer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698