App optimization mode format: https://screenshot.googleplex.com/di9DDzBfYf7ihfV App optimization mode backup format: https://screenshot.googleplex.com/GkVW5HrgGvmv5yh Bug: 192523697 Test: make SettingsRoboTests Change-Id: I60a9a76a8ffc89d625ee3f77c138a19181c81c38
30 lines
691 B
Protocol Buffer
30 lines
691 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package com.android.settings.intelligence;
|
|
option java_multiple_files = true;
|
|
option java_package = "com.android.settings.fuelgauge";
|
|
option java_outer_classname = "FuelgaugeLogProto";
|
|
|
|
// Stores history of setting optimize mode
|
|
message BatteryOptimizeHistoricalLog {
|
|
repeated BatteryOptimizeHistoricalLogEntry log_entry = 1;
|
|
}
|
|
|
|
message BatteryOptimizeHistoricalLogEntry {
|
|
|
|
// The action to set optimize mode
|
|
enum Action {
|
|
UNKNOWN = 0;
|
|
LEAVE = 1;
|
|
APPLY = 2;
|
|
RESET = 3;
|
|
RESTORE = 4;
|
|
BACKUP = 5;
|
|
}
|
|
|
|
optional string package_name = 1;
|
|
optional Action action = 2;
|
|
optional string action_description = 3;
|
|
optional int64 timestamp = 4;
|
|
}
|