| Index: ui/base/events/event.h
|
| diff --git a/ui/base/events/event.h b/ui/base/events/event.h
|
| index 4d8ad639c59290f640fa7c7df64332aa806aed3f..2b9d340d724bc37ed0425cc661b14103894effa8 100644
|
| --- a/ui/base/events/event.h
|
| +++ b/ui/base/events/event.h
|
| @@ -204,7 +204,11 @@ class UI_EXPORT LocatedEvent : public Event {
|
|
|
| int x() const { return location_.x(); }
|
| int y() const { return location_.y(); }
|
| + void set_location(const gfx::Point& location) { location_ = location; }
|
| gfx::Point location() const { return location_; }
|
| + void set_root_location(const gfx::Point& root_location) {
|
| + root_location_ = root_location;
|
| + }
|
| gfx::Point root_location() const { return root_location_; }
|
|
|
| bool valid_system_location() const { return valid_system_location_; }
|
|
|