| 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,
|
|
|