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

Unified Diff: ppapi/proxy/compositor_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/compositor_layer_resource.h ('k') | ppapi/proxy/device_enumeration_resource_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/compositor_resource.h
diff --git a/ppapi/proxy/compositor_resource.h b/ppapi/proxy/compositor_resource.h
index 8bdeb3f650eff83ba04b310735c85d38b906585d..82828d92d31dfeaf53edd13af5c6f37efda7958f 100644
--- a/ppapi/proxy/compositor_resource.h
+++ b/ppapi/proxy/compositor_resource.h
@@ -31,17 +31,17 @@ class PPAPI_PROXY_EXPORT CompositorResource
virtual ~CompositorResource();
// Resource overrides:
- virtual thunk::PPB_Compositor_API* AsPPB_Compositor_API() OVERRIDE;
+ virtual thunk::PPB_Compositor_API* AsPPB_Compositor_API() override;
// PluginResource overrides:
virtual void OnReplyReceived(const ResourceMessageReplyParams& params,
- const IPC::Message& msg) OVERRIDE;
+ const IPC::Message& msg) override;
// thunk::PPB_Compositor_API overrides:
- virtual PP_Resource AddLayer() OVERRIDE;
+ virtual PP_Resource AddLayer() override;
virtual int32_t CommitLayers(
- const scoped_refptr<TrackedCallback>& callback) OVERRIDE;
- virtual int32_t ResetLayers() OVERRIDE;
+ const scoped_refptr<TrackedCallback>& callback) override;
+ virtual int32_t ResetLayers() override;
// IPC msg handlers:
void OnPluginMsgCommitLayersReply(const ResourceMessageReplyParams& params);
« no previous file with comments | « ppapi/proxy/compositor_layer_resource.h ('k') | ppapi/proxy/device_enumeration_resource_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698