Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / media / rtc_video_decoder_factory.h
index d40203f..19c8519 100644 (file)
@@ -27,16 +27,16 @@ class CONTENT_EXPORT RTCVideoDecoderFactory
  public:
   explicit RTCVideoDecoderFactory(
       const scoped_refptr<media::GpuVideoAcceleratorFactories>& gpu_factories);
-  virtual ~RTCVideoDecoderFactory();
+  ~RTCVideoDecoderFactory() override;
 
   // Runs on Chrome_libJingle_WorkerThread. The child thread is blocked while
   // this runs.
-  virtual webrtc::VideoDecoder* CreateVideoDecoder(webrtc::VideoCodecType type)
-      OVERRIDE;
+  webrtc::VideoDecoder* CreateVideoDecoder(
+      webrtc::VideoCodecType type) override;
 
   // Runs on Chrome_libJingle_WorkerThread. The child thread is blocked while
   // this runs.
-  virtual void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) OVERRIDE;
+  void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) override;
 
  private:
   scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories_;