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

Unified Diff: ppapi/shared_impl/ppb_input_event_shared.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/shared_impl/ppb_graphics_3d_shared.h ('k') | ppapi/shared_impl/ppb_instance_shared.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_input_event_shared.h
diff --git a/ppapi/shared_impl/ppb_input_event_shared.h b/ppapi/shared_impl/ppb_input_event_shared.h
index ebfad8611d70a7e490603ace3535fee449f4dd42..bd0d175595111571cd5a6eed0bc0abab57ee971f 100644
--- a/ppapi/shared_impl/ppb_input_event_shared.h
+++ b/ppapi/shared_impl/ppb_input_event_shared.h
@@ -72,35 +72,35 @@ class PPAPI_SHARED_EXPORT PPB_InputEvent_Shared
const InputEventData& data);
// Resource overrides.
- virtual PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE;
+ virtual PPB_InputEvent_API* AsPPB_InputEvent_API() override;
// PPB_InputEvent_API implementation.
- virtual const InputEventData& GetInputEventData() const OVERRIDE;
- virtual PP_InputEvent_Type GetType() OVERRIDE;
- virtual PP_TimeTicks GetTimeStamp() OVERRIDE;
- virtual uint32_t GetModifiers() OVERRIDE;
- virtual PP_InputEvent_MouseButton GetMouseButton() OVERRIDE;
- virtual PP_Point GetMousePosition() OVERRIDE;
- virtual int32_t GetMouseClickCount() OVERRIDE;
- virtual PP_Point GetMouseMovement() OVERRIDE;
- virtual PP_FloatPoint GetWheelDelta() OVERRIDE;
- virtual PP_FloatPoint GetWheelTicks() OVERRIDE;
- virtual PP_Bool GetWheelScrollByPage() OVERRIDE;
- virtual uint32_t GetKeyCode() OVERRIDE;
- virtual PP_Var GetCharacterText() OVERRIDE;
- virtual PP_Var GetCode() OVERRIDE;
- virtual uint32_t GetIMESegmentNumber() OVERRIDE;
- virtual uint32_t GetIMESegmentOffset(uint32_t index) OVERRIDE;
- virtual int32_t GetIMETargetSegment() OVERRIDE;
- virtual void GetIMESelection(uint32_t* start, uint32_t* end) OVERRIDE;
+ virtual const InputEventData& GetInputEventData() const override;
+ virtual PP_InputEvent_Type GetType() override;
+ virtual PP_TimeTicks GetTimeStamp() override;
+ virtual uint32_t GetModifiers() override;
+ virtual PP_InputEvent_MouseButton GetMouseButton() override;
+ virtual PP_Point GetMousePosition() override;
+ virtual int32_t GetMouseClickCount() override;
+ virtual PP_Point GetMouseMovement() override;
+ virtual PP_FloatPoint GetWheelDelta() override;
+ virtual PP_FloatPoint GetWheelTicks() override;
+ virtual PP_Bool GetWheelScrollByPage() override;
+ virtual uint32_t GetKeyCode() override;
+ virtual PP_Var GetCharacterText() override;
+ virtual PP_Var GetCode() override;
+ virtual uint32_t GetIMESegmentNumber() override;
+ virtual uint32_t GetIMESegmentOffset(uint32_t index) override;
+ virtual int32_t GetIMETargetSegment() override;
+ virtual void GetIMESelection(uint32_t* start, uint32_t* end) override;
virtual void AddTouchPoint(PP_TouchListType list,
- const PP_TouchPoint& point) OVERRIDE;
- virtual uint32_t GetTouchCount(PP_TouchListType list) OVERRIDE;
+ const PP_TouchPoint& point) override;
+ virtual uint32_t GetTouchCount(PP_TouchListType list) override;
virtual PP_TouchPoint GetTouchByIndex(PP_TouchListType list,
- uint32_t index) OVERRIDE;
+ uint32_t index) override;
virtual PP_TouchPoint GetTouchById(PP_TouchListType list,
- uint32_t id) OVERRIDE;
- virtual PP_Bool TraceInputLatency(PP_Bool has_damage) OVERRIDE;
+ uint32_t id) override;
+ virtual PP_Bool TraceInputLatency(PP_Bool has_damage) override;
// Implementations for event creation.
static PP_Resource CreateIMEInputEvent(ResourceObjectType type,
« no previous file with comments | « ppapi/shared_impl/ppb_graphics_3d_shared.h ('k') | ppapi/shared_impl/ppb_instance_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698