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

Unified Diff: ppapi/proxy/ppb_video_decoder_proxy.cc

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (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 | « ppapi/proxy/ppb_message_loop_proxy.h ('k') | ppapi/proxy/ppb_x509_certificate_private_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_video_decoder_proxy.cc
diff --git a/ppapi/proxy/ppb_video_decoder_proxy.cc b/ppapi/proxy/ppb_video_decoder_proxy.cc
index 4eae1f2265466cc7eb54362fd257a16e1977d8c4..7699c84ecaab1bc74a31defcc16d7f8d7045a459 100644
--- a/ppapi/proxy/ppb_video_decoder_proxy.cc
+++ b/ppapi/proxy/ppb_video_decoder_proxy.cc
@@ -35,13 +35,13 @@ class VideoDecoder : public PPB_VideoDecoder_Shared {
// PPB_VideoDecoder_Dev_API implementation.
virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<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<TrackedCallback> callback) OVERRIDE;
- virtual int32_t Reset(scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual void Destroy() OVERRIDE;
+ 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<TrackedCallback> callback) override;
+ virtual int32_t Reset(scoped_refptr<TrackedCallback> callback) override;
+ virtual void Destroy() override;
private:
friend class PPB_VideoDecoder_Proxy;
« no previous file with comments | « ppapi/proxy/ppb_message_loop_proxy.h ('k') | ppapi/proxy/ppb_x509_certificate_private_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698