Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / media / audio / audio_output_dispatcher_impl.h
index 52d647a..1aa5a32 100644 (file)
@@ -40,30 +40,29 @@ class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher {
 
   // Opens a new physical stream if there are no pending streams in
   // |idle_streams_|.  Do not call Close() or Stop() if this method fails.
-  virtual bool OpenStream() OVERRIDE;
+  bool OpenStream() override;
 
   // If there are pending streams in |idle_streams_| then it reuses one of
   // them, otherwise creates a new one.
-  virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback,
-                           AudioOutputProxy* stream_proxy) OVERRIDE;
+  bool StartStream(AudioOutputStream::AudioSourceCallback* callback,
+                   AudioOutputProxy* stream_proxy) override;
 
   // Stops the stream assigned to the specified proxy and moves it into
   // |idle_streams_| for reuse by other proxies.
-  virtual void StopStream(AudioOutputProxy* stream_proxy) OVERRIDE;
+  void StopStream(AudioOutputProxy* stream_proxy) override;
 
-  virtual void StreamVolumeSet(AudioOutputProxy* stream_proxy,
-                               double volume) OVERRIDE;
+  void StreamVolumeSet(AudioOutputProxy* stream_proxy, double volume) override;
 
   // Closes |idle_streams_| until the number of |idle_streams_| is equal to the
   // |idle_proxies_| count.  If there are no |idle_proxies_| a single stream is
   // kept alive until |close_timer_| fires.
-  virtual void CloseStream(AudioOutputProxy* stream_proxy) OVERRIDE;
+  void CloseStream(AudioOutputProxy* stream_proxy) override;
 
-  virtual void Shutdown() OVERRIDE;
+  void Shutdown() override;
 
  private:
   friend class base::RefCountedThreadSafe<AudioOutputDispatcherImpl>;
-  virtual ~AudioOutputDispatcherImpl();
+  ~AudioOutputDispatcherImpl() override;
 
   // Creates a new physical output stream, opens it and pushes to
   // |idle_streams_|.  Returns false if the stream couldn't be created or