File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
shell/platform/android/io/flutter/view Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,6 @@ enum PointerDeviceKind {
5050 /// A pointer device with a stylus that has been inverted.
5151 invertedStylus,
5252
53- /// A pointer device that uses a pointer signal.
54- signal,
55-
5653 /// An unknown pointer device.
5754 unknown
5855}
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ struct alignas(8) PointerData {
2828 kMouse ,
2929 kStylus ,
3030 kInvertedStylus ,
31- kSignal ,
3231 };
3332
3433 // Must match the PointerSignalKind enum in pointer.dart.
Original file line number Diff line number Diff line change @@ -378,8 +378,7 @@ public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
378378 private static final int kPointerDeviceKindMouse = 1 ;
379379 private static final int kPointerDeviceKindStylus = 2 ;
380380 private static final int kPointerDeviceKindInvertedStylus = 3 ;
381- private static final int kPointerDeviceKindSignal = 4 ;
382- private static final int kPointerDeviceKindUnknown = 5 ;
381+ private static final int kPointerDeviceKindUnknown = 4 ;
383382
384383 // Must match the PointerSignalKind enum in pointer.dart.
385384 private static final int kPointerSignalKindNone = 0 ;
You can’t perform that action at this time.
0 commit comments