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

Unified Diff: ppapi/proxy/media_stream_video_track_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/media_stream_track_resource_base.h ('k') | ppapi/proxy/net_address_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/media_stream_video_track_resource.h
diff --git a/ppapi/proxy/media_stream_video_track_resource.h b/ppapi/proxy/media_stream_video_track_resource.h
index 1e9927f82fe8d023dac625cbd85479fa761ee255..2bdbb72b24b716c93d32e886e3b0bb98ac15f8ec 100644
--- a/ppapi/proxy/media_stream_video_track_resource.h
+++ b/ppapi/proxy/media_stream_video_track_resource.h
@@ -32,25 +32,25 @@ class PPAPI_PROXY_EXPORT MediaStreamVideoTrackResource
// Resource overrides:
virtual thunk::PPB_MediaStreamVideoTrack_API*
- AsPPB_MediaStreamVideoTrack_API() OVERRIDE;
+ AsPPB_MediaStreamVideoTrack_API() override;
// PPB_MediaStreamVideoTrack_API overrides:
- virtual PP_Var GetId() OVERRIDE;
- virtual PP_Bool HasEnded() OVERRIDE;
+ virtual PP_Var GetId() override;
+ virtual PP_Bool HasEnded() override;
virtual int32_t Configure(const int32_t attrib_list[],
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t GetAttrib(PP_MediaStreamVideoTrack_Attrib attrib,
- int32_t* value) OVERRIDE;
+ int32_t* value) override;
virtual int32_t GetFrame(PP_Resource* frame,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual int32_t RecycleFrame(PP_Resource frame) OVERRIDE;
- virtual void Close() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual int32_t RecycleFrame(PP_Resource frame) override;
+ virtual void Close() override;
virtual int32_t GetEmptyFrame(
- PP_Resource* frame, scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual int32_t PutFrame(PP_Resource frame) OVERRIDE;
+ PP_Resource* frame, scoped_refptr<TrackedCallback> callback) override;
+ virtual int32_t PutFrame(PP_Resource frame) override;
// MediaStreamBufferManager::Delegate overrides:
- virtual void OnNewBufferEnqueued() OVERRIDE;
+ virtual void OnNewBufferEnqueued() override;
private:
PP_Resource GetVideoFrame();
« no previous file with comments | « ppapi/proxy/media_stream_track_resource_base.h ('k') | ppapi/proxy/net_address_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698