Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / media / audio / agc_audio_stream.h
index 940d964..f7b909f 100644 (file)
@@ -138,14 +138,14 @@ class MEDIA_EXPORT AgcAudioStream : public AudioInterface {
   // be read in each AudioInputCallback::OnData() callback and fed to the
   // render-side AGC. User must call StartAgc() as well to start measuring
   // the microphone level.
-  virtual void SetAutomaticGainControl(bool enabled) OVERRIDE {
+  virtual void SetAutomaticGainControl(bool enabled) override {
     DVLOG(1) << "SetAutomaticGainControl(enabled=" << enabled << ")";
     DCHECK(thread_checker_.CalledOnValidThread());
     agc_is_enabled_ = enabled;
   }
 
   // Gets the current automatic gain control state.
-  virtual bool GetAutomaticGainControl() OVERRIDE {
+  virtual bool GetAutomaticGainControl() override {
     DCHECK(thread_checker_.CalledOnValidThread());
     return agc_is_enabled_;
   }