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

Unified Diff: ppapi/proxy/media_stream_audio_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/isolated_file_system_private_resource.h ('k') | ppapi/proxy/media_stream_track_resource_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/media_stream_audio_track_resource.h
diff --git a/ppapi/proxy/media_stream_audio_track_resource.h b/ppapi/proxy/media_stream_audio_track_resource.h
index 6cc5d436f50a848ed3db6281ea5f243a7fce40e1..3dece83203095f46dff5f7557626278e14174fc1 100644
--- a/ppapi/proxy/media_stream_audio_track_resource.h
+++ b/ppapi/proxy/media_stream_audio_track_resource.h
@@ -31,23 +31,23 @@ class PPAPI_PROXY_EXPORT MediaStreamAudioTrackResource
// Resource overrides:
virtual thunk::PPB_MediaStreamAudioTrack_API*
- AsPPB_MediaStreamAudioTrack_API() OVERRIDE;
+ AsPPB_MediaStreamAudioTrack_API() override;
// PPB_MediaStreamAudioTrack_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_MediaStreamAudioTrack_Attrib attrib,
- int32_t* value) OVERRIDE;
+ int32_t* value) override;
virtual int32_t GetBuffer(
PP_Resource* buffer,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual int32_t RecycleBuffer(PP_Resource buffer) OVERRIDE;
- virtual void Close() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual int32_t RecycleBuffer(PP_Resource buffer) override;
+ virtual void Close() override;
// MediaStreamBufferManager::Delegate overrides:
- virtual void OnNewBufferEnqueued() OVERRIDE;
+ virtual void OnNewBufferEnqueued() override;
private:
PP_Resource GetAudioBuffer();
« no previous file with comments | « ppapi/proxy/isolated_file_system_private_resource.h ('k') | ppapi/proxy/media_stream_track_resource_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698