Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / renderer / pepper / ppb_video_decoder_impl.h
index c099950..e3037b9 100644 (file)
@@ -32,32 +32,28 @@ class PPB_VideoDecoder_Impl : public ppapi::PPB_VideoDecoder_Shared,
                             PP_VideoDecoder_Profile profile);
 
   // PPB_VideoDecoder_Dev_API implementation.
-  virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
-                         scoped_refptr<ppapi::TrackedCallback> callback)
-      OVERRIDE;
-  virtual void AssignPictureBuffers(uint32_t no_of_buffers,
-                                    const PP_PictureBuffer_Dev* buffers)
-      OVERRIDE;
-  virtual void ReusePictureBuffer(int32_t picture_buffer_id) OVERRIDE;
-  virtual int32_t Flush(scoped_refptr<ppapi::TrackedCallback> callback)
-      OVERRIDE;
-  virtual int32_t Reset(scoped_refptr<ppapi::TrackedCallback> callback)
-      OVERRIDE;
-  virtual void Destroy() OVERRIDE;
+  int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
+                 scoped_refptr<ppapi::TrackedCallback> callback) override;
+  void AssignPictureBuffers(uint32_t no_of_buffers,
+                            const PP_PictureBuffer_Dev* buffers) override;
+  void ReusePictureBuffer(int32_t picture_buffer_id) override;
+  int32_t Flush(scoped_refptr<ppapi::TrackedCallback> callback) override;
+  int32_t Reset(scoped_refptr<ppapi::TrackedCallback> callback) override;
+  void Destroy() override;
 
   // media::VideoDecodeAccelerator::Client implementation.
-  virtual void ProvidePictureBuffers(uint32 requested_num_of_buffers,
-                                     const gfx::Size& dimensions,
-                                     uint32 texture_target) OVERRIDE;
-  virtual void DismissPictureBuffer(int32 picture_buffer_id) OVERRIDE;
-  virtual void PictureReady(const media::Picture& picture) OVERRIDE;
-  virtual void NotifyError(media::VideoDecodeAccelerator::Error error) OVERRIDE;
-  virtual void NotifyFlushDone() OVERRIDE;
-  virtual void NotifyEndOfBitstreamBuffer(int32 buffer_id) OVERRIDE;
-  virtual void NotifyResetDone() OVERRIDE;
+  void ProvidePictureBuffers(uint32 requested_num_of_buffers,
+                             const gfx::Size& dimensions,
+                             uint32 texture_target) override;
+  void DismissPictureBuffer(int32 picture_buffer_id) override;
+  void PictureReady(const media::Picture& picture) override;
+  void NotifyError(media::VideoDecodeAccelerator::Error error) override;
+  void NotifyFlushDone() override;
+  void NotifyEndOfBitstreamBuffer(int32 buffer_id) override;
+  void NotifyResetDone() override;
 
  private:
-  virtual ~PPB_VideoDecoder_Impl();
+  ~PPB_VideoDecoder_Impl() override;
 
   explicit PPB_VideoDecoder_Impl(PP_Instance instance);
   bool Init(PP_Resource graphics_context,