Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: content/renderer/pepper/ppb_video_decoder_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/ppb_scrollbar_impl.h ('k') | content/renderer/pepper/ppb_widget_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/ppb_video_decoder_impl.h
diff --git a/content/renderer/pepper/ppb_video_decoder_impl.h b/content/renderer/pepper/ppb_video_decoder_impl.h
index c099950f97d113284438af63bffe3ad2ceef87e9..6fdd36adddbe2b6faa94f82c1f677a21e07a84dd 100644
--- a/content/renderer/pepper/ppb_video_decoder_impl.h
+++ b/content/renderer/pepper/ppb_video_decoder_impl.h
@@ -34,27 +34,27 @@ class PPB_VideoDecoder_Impl : public ppapi::PPB_VideoDecoder_Shared,
// PPB_VideoDecoder_Dev_API implementation.
virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
scoped_refptr<ppapi::TrackedCallback> callback)
- OVERRIDE;
+ override;
virtual void AssignPictureBuffers(uint32_t no_of_buffers,
const PP_PictureBuffer_Dev* buffers)
- OVERRIDE;
- virtual void ReusePictureBuffer(int32_t picture_buffer_id) OVERRIDE;
+ override;
+ virtual void ReusePictureBuffer(int32_t picture_buffer_id) override;
virtual int32_t Flush(scoped_refptr<ppapi::TrackedCallback> callback)
- OVERRIDE;
+ override;
virtual int32_t Reset(scoped_refptr<ppapi::TrackedCallback> callback)
- OVERRIDE;
- virtual void Destroy() OVERRIDE;
+ override;
+ virtual 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;
+ 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;
private:
virtual ~PPB_VideoDecoder_Impl();
« no previous file with comments | « content/renderer/pepper/ppb_scrollbar_impl.h ('k') | content/renderer/pepper/ppb_widget_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698