| Index: ui/base/events/event.h
|
| diff --git a/ui/base/events/event.h b/ui/base/events/event.h
|
| index 3293586622443999ee9b29da348a012c64f46fa0..b88c8d9909ecc2df970bc047607a05fdc9e17a4c 100644
|
| --- a/ui/base/events/event.h
|
| +++ b/ui/base/events/event.h
|
| @@ -410,6 +410,16 @@ class UI_EXPORT TouchEvent : public LocatedEvent {
|
| int touch_id,
|
| base::TimeDelta time_stamp);
|
|
|
| + TouchEvent(EventType type,
|
| + const gfx::Point& location,
|
| + int flags,
|
| + int touch_id,
|
| + base::TimeDelta timestamp,
|
| + float radius_x,
|
| + float radius_y,
|
| + float angle,
|
| + float force);
|
| +
|
| virtual ~TouchEvent();
|
|
|
| int touch_id() const { return touch_id_; }
|
| @@ -464,22 +474,6 @@ class UI_EXPORT TouchEvent : public LocatedEvent {
|
| DISALLOW_COPY_AND_ASSIGN(TouchEvent);
|
| };
|
|
|
| -class UI_EXPORT TestTouchEvent : public TouchEvent {
|
| - public:
|
| - // Create a new touch event.
|
| - TestTouchEvent(EventType type,
|
| - int x,
|
| - int y,
|
| - int flags,
|
| - int touch_id,
|
| - float radius_x,
|
| - float radius_y,
|
| - float angle,
|
| - float force);
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(TestTouchEvent);
|
| -};
|
| -
|
| class UI_EXPORT KeyEvent : public Event {
|
| public:
|
| KeyEvent(const base::NativeEvent& native_event, bool is_char);
|
|
|