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

Unified Diff: ppapi/proxy/video_frame_resource.h

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/video_destination_resource.h ('k') | ppapi/proxy/video_source_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/video_frame_resource.h
diff --git a/ppapi/proxy/video_frame_resource.h b/ppapi/proxy/video_frame_resource.h
index 92ac08e0c9d3d94d248c8f7c9a2710153b62607a..13901a6549273a0b13f523e862b299a61cbec501 100644
--- a/ppapi/proxy/video_frame_resource.h
+++ b/ppapi/proxy/video_frame_resource.h
@@ -25,18 +25,18 @@ class PPAPI_PROXY_EXPORT VideoFrameResource : public Resource,
virtual ~VideoFrameResource();
// PluginResource overrides:
- virtual thunk::PPB_VideoFrame_API* AsPPB_VideoFrame_API() OVERRIDE;
+ virtual thunk::PPB_VideoFrame_API* AsPPB_VideoFrame_API() override;
// PPB_VideoFrame_API overrides:
- virtual PP_TimeDelta GetTimestamp() OVERRIDE;
- virtual void SetTimestamp(PP_TimeDelta timestamp) OVERRIDE;
- virtual PP_VideoFrame_Format GetFormat() OVERRIDE;
- virtual PP_Bool GetSize(PP_Size* size) OVERRIDE;
- virtual void* GetDataBuffer() OVERRIDE;
- virtual uint32_t GetDataBufferSize() OVERRIDE;
- virtual MediaStreamBuffer* GetBuffer() OVERRIDE;
- virtual int32_t GetBufferIndex() OVERRIDE;
- virtual void Invalidate() OVERRIDE;
+ virtual PP_TimeDelta GetTimestamp() override;
+ virtual void SetTimestamp(PP_TimeDelta timestamp) override;
+ virtual PP_VideoFrame_Format GetFormat() override;
+ virtual PP_Bool GetSize(PP_Size* size) override;
+ virtual void* GetDataBuffer() override;
+ virtual uint32_t GetDataBufferSize() override;
+ virtual MediaStreamBuffer* GetBuffer() override;
+ virtual int32_t GetBufferIndex() override;
+ virtual void Invalidate() override;
// Frame index
int32_t index_;
« no previous file with comments | « ppapi/proxy/video_destination_resource.h ('k') | ppapi/proxy/video_source_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698