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

Unified Diff: ppapi/proxy/video_frame_resource.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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 13901a6549273a0b13f523e862b299a61cbec501..e796eed8d4545947044030b6da00309419888905 100644
--- a/ppapi/proxy/video_frame_resource.h
+++ b/ppapi/proxy/video_frame_resource.h
@@ -22,21 +22,21 @@ class PPAPI_PROXY_EXPORT VideoFrameResource : public Resource,
int32_t index,
MediaStreamBuffer* buffer);
- virtual ~VideoFrameResource();
+ ~VideoFrameResource() override;
// PluginResource overrides:
- virtual thunk::PPB_VideoFrame_API* AsPPB_VideoFrame_API() override;
+ 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;
+ PP_TimeDelta GetTimestamp() override;
+ void SetTimestamp(PP_TimeDelta timestamp) override;
+ PP_VideoFrame_Format GetFormat() override;
+ PP_Bool GetSize(PP_Size* size) override;
+ void* GetDataBuffer() override;
+ uint32_t GetDataBufferSize() override;
+ MediaStreamBuffer* GetBuffer() override;
+ int32_t GetBufferIndex() override;
+ 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