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/ppb_message_loop_proxy.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/ppb_instance_proxy.h ('k') | ppapi/proxy/ppb_video_decoder_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_message_loop_proxy.h
diff --git a/ppapi/proxy/ppb_message_loop_proxy.h b/ppapi/proxy/ppb_message_loop_proxy.h
index 20569f76e14c356e331f0bb8229a6258c051a072..73df5f1cb2841f84d4ea17056fb4fd57d4803a14 100644
--- a/ppapi/proxy/ppb_message_loop_proxy.h
+++ b/ppapi/proxy/ppb_message_loop_proxy.h
@@ -29,14 +29,14 @@ class PPAPI_PROXY_EXPORT MessageLoopResource : public MessageLoopShared {
virtual ~MessageLoopResource();
// Resource overrides.
- virtual thunk::PPB_MessageLoop_API* AsPPB_MessageLoop_API() OVERRIDE;
+ virtual thunk::PPB_MessageLoop_API* AsPPB_MessageLoop_API() override;
// PPB_MessageLoop_API implementation.
- virtual int32_t AttachToCurrentThread() OVERRIDE;
- virtual int32_t Run() OVERRIDE;
+ virtual int32_t AttachToCurrentThread() override;
+ virtual int32_t Run() override;
virtual int32_t PostWork(PP_CompletionCallback callback,
- int64_t delay_ms) OVERRIDE;
- virtual int32_t PostQuit(PP_Bool should_destroy) OVERRIDE;
+ int64_t delay_ms) override;
+ virtual int32_t PostQuit(PP_Bool should_destroy) override;
static MessageLoopResource* GetCurrent();
void DetachFromThread();
@@ -71,9 +71,9 @@ class PPAPI_PROXY_EXPORT MessageLoopResource : public MessageLoopShared {
// proxy operations (e.g., MessageLoop::QuitClosure).
virtual void PostClosure(const tracked_objects::Location& from_here,
const base::Closure& closure,
- int64 delay_ms) OVERRIDE;
- virtual base::MessageLoopProxy* GetMessageLoopProxy() OVERRIDE;
- virtual bool CurrentlyHandlingBlockingMessage() OVERRIDE;
+ int64 delay_ms) override;
+ virtual base::MessageLoopProxy* GetMessageLoopProxy() override;
+ virtual bool CurrentlyHandlingBlockingMessage() override;
// TLS destructor function.
static void ReleaseMessageLoop(void* value);
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.h ('k') | ppapi/proxy/ppb_video_decoder_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698