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

Unified Diff: ppapi/proxy/compositor_layer_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/browser_font_singleton_resource.h ('k') | ppapi/proxy/compositor_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/compositor_layer_resource.h
diff --git a/ppapi/proxy/compositor_layer_resource.h b/ppapi/proxy/compositor_layer_resource.h
index 09f5d81cee577d4d8b4e6c115a1dff670e6cafd8..5609740902fe1455dc4bea4791534563ea1f56b8 100644
--- a/ppapi/proxy/compositor_layer_resource.h
+++ b/ppapi/proxy/compositor_layer_resource.h
@@ -45,35 +45,35 @@ class PPAPI_PROXY_EXPORT CompositorLayerResource
virtual ~CompositorLayerResource();
// Resource overrides:
- virtual thunk::PPB_CompositorLayer_API* AsPPB_CompositorLayer_API() OVERRIDE;
+ virtual thunk::PPB_CompositorLayer_API* AsPPB_CompositorLayer_API() override;
// thunk::PPB_Compositor_API overrides:
virtual int32_t SetColor(float red,
float green,
float blue,
float alpha,
- const PP_Size* size) OVERRIDE;
+ const PP_Size* size) override;
virtual int32_t SetTexture0_1(
PP_Resource context,
uint32_t texture,
const PP_Size* size,
- const scoped_refptr<ppapi::TrackedCallback>& callback) OVERRIDE;
+ const scoped_refptr<ppapi::TrackedCallback>& callback) override;
virtual int32_t SetTexture(
PP_Resource context,
uint32_t target,
uint32_t texture,
const PP_Size* size,
- const scoped_refptr<TrackedCallback>& callback) OVERRIDE;
+ const scoped_refptr<TrackedCallback>& callback) override;
virtual int32_t SetImage(
PP_Resource image_data,
const PP_Size* size,
- const scoped_refptr<TrackedCallback>& callback) OVERRIDE;
- virtual int32_t SetClipRect(const PP_Rect* rect) OVERRIDE;
- virtual int32_t SetTransform(const float matrix[16]) OVERRIDE;
- virtual int32_t SetOpacity(float opacity) OVERRIDE;
- virtual int32_t SetBlendMode(PP_BlendMode mode) OVERRIDE;
- virtual int32_t SetSourceRect(const PP_FloatRect* rect) OVERRIDE;
- virtual int32_t SetPremultipliedAlpha(PP_Bool premult) OVERRIDE;
+ const scoped_refptr<TrackedCallback>& callback) override;
+ virtual int32_t SetClipRect(const PP_Rect* rect) override;
+ virtual int32_t SetTransform(const float matrix[16]) override;
+ virtual int32_t SetOpacity(float opacity) override;
+ virtual int32_t SetBlendMode(PP_BlendMode mode) override;
+ virtual int32_t SetSourceRect(const PP_FloatRect* rect) override;
+ virtual int32_t SetPremultipliedAlpha(PP_Bool premult) override;
bool SetType(LayerType type);
int32_t CheckForSetTextureAndImage(
« no previous file with comments | « ppapi/proxy/browser_font_singleton_resource.h ('k') | ppapi/proxy/compositor_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698