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

Unified Diff: ppapi/proxy/audio_input_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/audio_buffer_resource.h ('k') | ppapi/proxy/broker_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/audio_input_resource.h
diff --git a/ppapi/proxy/audio_input_resource.h b/ppapi/proxy/audio_input_resource.h
index 0184260c359ed9d1cfb5ff3061240ba2bedf8c42..1d4fc06272c26f8d0182cab9352f28df63e3bc00 100644
--- a/ppapi/proxy/audio_input_resource.h
+++ b/ppapi/proxy/audio_input_resource.h
@@ -34,35 +34,35 @@ class AudioInputResource : public PluginResource,
virtual ~AudioInputResource();
// Resource overrides.
- virtual thunk::PPB_AudioInput_API* AsPPB_AudioInput_API() OVERRIDE;
+ virtual thunk::PPB_AudioInput_API* AsPPB_AudioInput_API() override;
virtual void OnReplyReceived(const ResourceMessageReplyParams& params,
- const IPC::Message& msg) OVERRIDE;
+ const IPC::Message& msg) override;
// PPB_AudioInput_API implementation.
virtual int32_t EnumerateDevices(
const PP_ArrayOutput& output,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t MonitorDeviceChange(
PP_MonitorDeviceChangeCallback callback,
- void* user_data) OVERRIDE;
+ void* user_data) override;
virtual int32_t Open0_3(PP_Resource device_ref,
PP_Resource config,
PPB_AudioInput_Callback_0_3 audio_input_callback_0_3,
void* user_data,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t Open(PP_Resource device_ref,
PP_Resource config,
PPB_AudioInput_Callback audio_input_callback,
void* user_data,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual PP_Resource GetCurrentConfig() OVERRIDE;
- virtual PP_Bool StartCapture() OVERRIDE;
- virtual PP_Bool StopCapture() OVERRIDE;
- virtual void Close() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual PP_Resource GetCurrentConfig() override;
+ virtual PP_Bool StartCapture() override;
+ virtual PP_Bool StopCapture() override;
+ virtual void Close() override;
protected:
// Resource override.
- virtual void LastPluginRefWasDeleted() OVERRIDE;
+ virtual void LastPluginRefWasDeleted() override;
private:
enum OpenState {
@@ -87,7 +87,7 @@ class AudioInputResource : public PluginResource,
// DelegateSimpleThread::Delegate implementation.
// Run on the audio input thread.
- virtual void Run() OVERRIDE;
+ virtual void Run() override;
int32_t CommonOpen(PP_Resource device_ref,
PP_Resource config,
« no previous file with comments | « ppapi/proxy/audio_buffer_resource.h ('k') | ppapi/proxy/broker_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698