Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3191383d authored by Harry Cutts's avatar Harry Cutts Committed by Android (Google) Code Review
Browse files

Merge "TouchInputMapper: remove PointerUsage code" into main

parents 560b16ff 0917213c
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -151,16 +151,6 @@ flag {
  is_fixed_read_only: true
}

flag {
  name: "disable_touch_input_mapper_pointer_usage"
  namespace: "input"
  description: "Disable the PointerUsage concept in TouchInputMapper since the old touchpad stack is no longer used."
  bug: "281840344"
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
  name: "keyboard_repeat_keys"
  namespace: "input"
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ struct InputReaderConfiguration {
    // For mice, these are ignored and the values of mousePointerSpeed and
    // mousePointerAccelerationEnabled used instead.
    //
    // TODO(b/281840344): remove this.
    // TODO(b/281840344): remove, and check if other fields beginning with pointer… are still used.
    VelocityControlParameters pointerVelocityControlParameters;

    // Velocity control parameters for mouse wheel movements.
+0 −7
Original line number Diff line number Diff line
@@ -55,13 +55,6 @@ const bool DEBUG_POINTERS =
const bool DEBUG_POINTER_ASSIGNMENT =
        __android_log_is_loggable(ANDROID_LOG_DEBUG, LOG_TAG "PointerAssignment", ANDROID_LOG_INFO);

/**
 * Log debug messages about gesture detection.
 * Enable this via "adb shell setprop log.tag.InputReaderGestures DEBUG" (requires restart)
 */
const bool DEBUG_GESTURES =
        __android_log_is_loggable(ANDROID_LOG_DEBUG, LOG_TAG "Gestures", ANDROID_LOG_INFO);

/**
 * Log debug messages about the vibrator.
 * Enable this via "adb shell setprop log.tag.InputReaderVibrator DEBUG" (requires restart)
Loading