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

Unified Diff: ppapi/proxy/graphics_2d_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/gamepad_resource.h ('k') | ppapi/proxy/host_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/graphics_2d_resource.h
diff --git a/ppapi/proxy/graphics_2d_resource.h b/ppapi/proxy/graphics_2d_resource.h
index b7ec30c710d31bb8b388d258bd7edf5c37743148..e8f4e993e71da6513800957bf5d4eedeef3eb82c 100644
--- a/ppapi/proxy/graphics_2d_resource.h
+++ b/ppapi/proxy/graphics_2d_resource.h
@@ -28,21 +28,21 @@ class PPAPI_PROXY_EXPORT Graphics2DResource
virtual ~Graphics2DResource();
// Resource overrides.
- virtual thunk::PPB_Graphics2D_API* AsPPB_Graphics2D_API() OVERRIDE;
+ virtual thunk::PPB_Graphics2D_API* AsPPB_Graphics2D_API() override;
// PPB_Graphics2D_API overrides.
- virtual PP_Bool Describe(PP_Size* size, PP_Bool* is_always_opaque) OVERRIDE;
+ virtual PP_Bool Describe(PP_Size* size, PP_Bool* is_always_opaque) override;
virtual void PaintImageData(PP_Resource image_data,
const PP_Point* top_left,
- const PP_Rect* src_rect) OVERRIDE;
+ const PP_Rect* src_rect) override;
virtual void Scroll(const PP_Rect* clip_rect,
- const PP_Point* amount) OVERRIDE;
- virtual void ReplaceContents(PP_Resource image_data) OVERRIDE;
- virtual PP_Bool SetScale(float scale) OVERRIDE;
- virtual float GetScale() OVERRIDE;
- virtual int32_t Flush(scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ const PP_Point* amount) override;
+ virtual void ReplaceContents(PP_Resource image_data) override;
+ virtual PP_Bool SetScale(float scale) override;
+ virtual float GetScale() override;
+ virtual int32_t Flush(scoped_refptr<TrackedCallback> callback) override;
virtual bool ReadImageData(PP_Resource image,
- const PP_Point* top_left) OVERRIDE;
+ const PP_Point* top_left) override;
private:
void OnPluginMsgFlushACK(const ResourceMessageReplyParams& params);
« no previous file with comments | « ppapi/proxy/gamepad_resource.h ('k') | ppapi/proxy/host_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698