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 0a71bb823625493f21c6388658a34179be8b6756..2d98dcdb2cdd00378fe8095e017950f3cda2380e 100644 |
--- a/content/common/input/web_input_event_traits.cc |
+++ b/content/common/input/web_input_event_traits.cc |
@@ -93,7 +93,8 @@ 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, Force: %f," |
+ " Tilt: (%d, %d)),\n", |
point.id, |
point.state, |
point.screenPosition.x, |
@@ -103,7 +104,9 @@ void ApppendTouchPointDetails(const WebTouchPoint& point, std::string* result) { |
point.radiusX, |
point.radiusY, |
point.rotationAngle, |
- point.force); |
+ point.force, |
+ point.tiltX, |
+ point.tiltY); |
} |
void ApppendEventDetails(const WebTouchEvent& event, std::string* result) { |