This repository was archived by the owner on Feb 25, 2025. It is now read-only.
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 {
50
50
/// A pointer device with a stylus that has been inverted.
51
51
invertedStylus,
52
52
53
- /// A pointer device that uses a pointer signal.
54
- signal,
55
-
56
53
/// An unknown pointer device.
57
54
unknown
58
55
}
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ struct alignas(8) PointerData {
28
28
kMouse ,
29
29
kStylus ,
30
30
kInvertedStylus ,
31
- kSignal ,
32
31
};
33
32
34
33
// 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) {
378
378
private static final int kPointerDeviceKindMouse = 1 ;
379
379
private static final int kPointerDeviceKindStylus = 2 ;
380
380
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 ;
383
382
384
383
// Must match the PointerSignalKind enum in pointer.dart.
385
384
private static final int kPointerSignalKindNone = 0 ;
You can’t perform that action at this time.
0 commit comments