| Index: content/browser/speech/endpointer/endpointer_unittest.cc
|
| diff --git a/content/browser/speech/endpointer/endpointer_unittest.cc b/content/browser/speech/endpointer/endpointer_unittest.cc
|
| index 306a5eeca28296edcbe960ff6a8df185cfe29648..ec0aac6af545a3ef859a8d9f048eb20e77c7f938 100644
|
| --- a/content/browser/speech/endpointer/endpointer_unittest.cc
|
| +++ b/content/browser/speech/endpointer/endpointer_unittest.cc
|
| @@ -75,7 +75,7 @@ class EnergyEndpointerFrameProcessor : public FrameProcessor {
|
|
|
| virtual EpStatus ProcessFrame(int64 time,
|
| int16* samples,
|
| - int frame_size) OVERRIDE {
|
| + int frame_size) override {
|
| endpointer_->ProcessAudioFrame(time, samples, kFrameSize, NULL);
|
| int64 ep_time;
|
| return endpointer_->Status(&ep_time);
|
| @@ -120,7 +120,7 @@ class EndpointerFrameProcessor : public FrameProcessor {
|
|
|
| virtual EpStatus ProcessFrame(int64 time,
|
| int16* samples,
|
| - int frame_size) OVERRIDE {
|
| + int frame_size) override {
|
| scoped_refptr<AudioChunk> frame(
|
| new AudioChunk(reinterpret_cast<uint8*>(samples), kFrameSize * 2, 2));
|
| endpointer_->ProcessAudio(*frame.get(), NULL);
|
|
|