summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/os/BatteryStats.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/java/android/os/BatteryStats.java b/core/java/android/os/BatteryStats.java
index 2aa6fb5d2250..1bb27bdbcb9f 100644
--- a/core/java/android/os/BatteryStats.java
+++ b/core/java/android/os/BatteryStats.java
@@ -277,13 +277,15 @@ public abstract class BatteryStats implements Parcelable {
public abstract long getVideoTurnedOnTime(long batteryRealtime, int which);
/**
- * Note that these must match the constants in android.os.LocalPowerManager.
+ * Note that these must match the constants in android.os.PowerManager.
+ * Also, if the user activity types change, the BatteryStatsImpl.VERSION must
+ * also be bumped.
*/
static final String[] USER_ACTIVITY_TYPES = {
- "other", "cheek", "touch", "long_touch", "touch_up", "button", "unknown"
+ "other", "button", "touch"
};
- public static final int NUM_USER_ACTIVITY_TYPES = 7;
+ public static final int NUM_USER_ACTIVITY_TYPES = 3;
public abstract void noteUserActivityLocked(int type);
public abstract boolean hasUserActivity();