summaryrefslogtreecommitdiffstats
path: root/ui/base/win/events_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/base/win/events_win.cc')
-rw-r--r--ui/base/win/events_win.cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/ui/base/win/events_win.cc b/ui/base/win/events_win.cc
index 47edce7..320ef48 100644
--- a/ui/base/win/events_win.cc
+++ b/ui/base/win/events_win.cc
@@ -218,4 +218,29 @@ int GetMouseWheelOffset(const base::NativeEvent& native_event) {
return GET_WHEEL_DELTA_WPARAM(native_event.wParam);
}
+int GetTouchId(const base::NativeEvent& xev) {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+float GetTouchRadiusX(const base::NativeEvent& native_event) {
+ NOTIMPLEMENTED();
+ return 1.0;
+}
+
+float GetTouchRadiusY(const base::NativeEvent& native_event) {
+ NOTIMPLEMENTED();
+ return 1.0;
+}
+
+float GetTouchAngle(const base::NativeEvent& native_event) {
+ NOTIMPLEMENTED();
+ return 0.0;
+}
+
+float GetTouchForce(const base::NativeEvent& native_event) {
+ NOTIMPLEMENTED();
+ return 0.0;
+}
+
} // namespace ui