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

Commit a5ec53d6 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "power/stats: Add more energy consumer types"

parents dfd890a1 eb214d03
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -34,6 +34,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
  OTHER = 0,
  CPU_CLUSTER = 1,
  DISPLAY = 2,
  BLUETOOTH = 1,
  CPU_CLUSTER = 2,
  DISPLAY = 3,
  GNSS = 4,
  MOBILE_RADIO = 5,
  WIFI = 6,
}
+5 −1
Original line number Diff line number Diff line
@@ -20,6 +20,10 @@ package android.hardware.power.stats;
@VintfStability
enum EnergyConsumerType {
    OTHER,
    BLUETOOTH,
    CPU_CLUSTER,
    DISPLAY,
    GNSS,
    MOBILE_RADIO,
    WIFI,
}