| Index: content/common/input/web_input_event_traits.cc
|
| diff --git a/content/common/input/web_input_event_traits.cc b/content/common/input/web_input_event_traits.cc
|
| index 087cf61e0cf2e8869c73ba55f03c4af33b102489..c5849aa19fbc66a63fe3c7d4373bc34f350b6756 100644
|
| --- a/content/common/input/web_input_event_traits.cc
|
| +++ b/content/common/input/web_input_event_traits.cc
|
| @@ -92,7 +92,7 @@ void ApppendEventDetails(const WebGestureEvent& event, std::string* result) {
|
| void ApppendTouchPointDetails(const WebTouchPoint& point, std::string* result) {
|
| StringAppendF(result,
|
| " (ID: %d, State: %d, ScreenPos: (%f, %f), Pos: (%f, %f),"
|
| - " Radius: (%f, %f), Rot: %f, Force: %f),\n",
|
| + " Radius: (%f, %f), Rot: %f, Tilt: %f, Force: %f),\n",
|
| point.id,
|
| point.state,
|
| point.screenPosition.x,
|
| @@ -102,6 +102,7 @@ void ApppendTouchPointDetails(const WebTouchPoint& point, std::string* result) {
|
| point.radiusX,
|
| point.radiusY,
|
| point.rotationAngle,
|
| + point.tilt,
|
| point.force);
|
| }
|
|
|
|
|