input: Remove prefix from InputDeviceSensorAccuracy enum
This is an enum class, so the value identifiers aren't in the global
namespace and therefore don't need to be Smurf-named.
Bug: 245989146
Change-Id: I7ec70dad5651eddcb55f61c3ebaeffc2e31f251d
Test: m checkinput
Flag: EXEMPT refactor
diff --git a/include/input/InputDevice.h b/include/input/InputDevice.h
index 6b45dd3..ea1e4ae 100644
--- a/include/input/InputDevice.h
+++ b/include/input/InputDevice.h
@@ -111,12 +111,12 @@
};
enum class InputDeviceSensorAccuracy : int32_t {
- ACCURACY_NONE = 0,
- ACCURACY_LOW = 1,
- ACCURACY_MEDIUM = 2,
- ACCURACY_HIGH = 3,
+ NONE = 0,
+ LOW = 1,
+ MEDIUM = 2,
+ HIGH = 3,
- ftl_last = ACCURACY_HIGH,
+ ftl_last = HIGH,
};
enum class InputDeviceSensorReportingMode : int32_t {