Index: content/browser/renderer_host/input/motion_event_web.cc |
diff --git a/content/browser/renderer_host/input/motion_event_web.cc b/content/browser/renderer_host/input/motion_event_web.cc |
index 77a40a4fe254afc68ff90b087d9f46c4f08fb5b8..d3a8feb0dc37517936b3024cce88514445ad8cef 100644 |
--- a/content/browser/renderer_host/input/motion_event_web.cc |
+++ b/content/browser/renderer_host/input/motion_event_web.cc |
@@ -137,6 +137,14 @@ float MotionEventWeb::GetOrientation(size_t pointer_index) const { |
return rotation_angle_rad; |
} |
+float MotionEventWeb::GetTilt(size_t pointer_index) const { |
+ return std::numeric_limits<float>::quiet_NaN(); |
+} |
+ |
+float MotionEventWeb::GetTiltDirection(size_t pointer_index) const { |
+ return std::numeric_limits<float>::quiet_NaN(); |
+} |
+ |
float MotionEventWeb::GetPressure(size_t pointer_index) const { |
return 0.f; |
} |