| Index: ui/events/event.h
|
| diff --git a/ui/events/event.h b/ui/events/event.h
|
| index 01eba2690cb95a123d2014b9add53dba8e8dffc0..19016fe8d17121be17822e653aa98294442a2d7d 100644
|
| --- a/ui/events/event.h
|
| +++ b/ui/events/event.h
|
| @@ -50,6 +50,7 @@ class EVENTS_EXPORT Event {
|
|
|
| const base::NativeEvent& native_event() const { return native_event_; }
|
| EventType type() const { return type_; }
|
| + void set_type(EventType type) { type_ = type; }
|
| const std::string& name() const { return name_; }
|
| // time_stamp represents time since machine was booted.
|
| const base::TimeDelta& time_stamp() const { return time_stamp_; }
|
|
|