| Index: views/events/event.cc
|
| diff --git a/views/events/event.cc b/views/events/event.cc
|
| index 86166b72f81b48fc811b606f9645796b1209d1d9..a537c54d9259847a3987ccaaf4a4b4bc99e5b6d2 100644
|
| --- a/views/events/event.cc
|
| +++ b/views/events/event.cc
|
| @@ -185,22 +185,22 @@ TouchEvent::TouchEvent(ui::EventType type,
|
| int y,
|
| int flags,
|
| int touch_id,
|
| - float radius,
|
| - float angle,
|
| - float ratio)
|
| + float radiusX,
|
| + float radiusY,
|
| + float angle)
|
| : LocatedEvent(type, gfx::Point(x, y), flags),
|
| touch_id_(touch_id),
|
| - radius_(radius),
|
| - angle_(angle),
|
| - ratio_(ratio) {
|
| + radiusX_(radiusX),
|
| + radiusY_(radiusY),
|
| + angle_(angle) {
|
| }
|
|
|
| TouchEvent::TouchEvent(const TouchEvent& model, View* source, View* target)
|
| : LocatedEvent(model, source, target),
|
| touch_id_(model.touch_id_),
|
| - radius_(model.radius_),
|
| - angle_(model.angle_),
|
| - ratio_(model.ratio_) {
|
| + radiusX_(model.radiusX_),
|
| + radiusY_(model.radiusY_),
|
| + angle_(model.angle_) {
|
| }
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
| @@ -209,9 +209,9 @@ TouchEvent::TouchEvent(const TouchEvent& model, View* source, View* target)
|
| TouchEvent::TouchEvent(const TouchEvent& model, View* root)
|
| : LocatedEvent(model, root),
|
| touch_id_(model.touch_id_),
|
| - radius_(model.radius_),
|
| - angle_(model.angle_),
|
| - ratio_(model.ratio_) {
|
| + radiusX_(model.radiusX_),
|
| + radiusY_(model.radiusY_),
|
| + angle_(model.angle_) {
|
| }
|
| #endif
|
|
|
|
|