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 547290783f71d999e8f9d66c58443b1ceb37dfae..f3cf0f64a13c397f5140689393f2532da14325a6 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) { |