Merge "power/stats: Correct language surrounding timestamps" am: 75d7e5de7c am: f2d5702776

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1703725

Change-Id: I166478e51a53c25b5d08bac9965dc787cdcc50c8
This commit is contained in:
Benjamin Schwartz
2021-05-12 00:11:00 +00:00
committed by Automerger Merge Worker
2 changed files with 2 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ parcelable EnergyConsumerResult {
*/
int id;
/**
* Time since boot in milliseconds
* Time of data capture in milliseconds since boot (CLOCK_BOOTTIME clock)
*/
long timestampMs;
/**
@@ -38,4 +38,3 @@ parcelable EnergyConsumerResult {
*/
EnergyConsumerAttribution[] attribution;
}

View File

@@ -23,7 +23,7 @@ parcelable EnergyMeasurement {
*/
int id;
/**
* Approximate time of data capture in millseconds since boot
* Time of data capture in milliseconds since boot (CLOCK_BOOTTIME clock)
*/
long timestampMs;
/**
@@ -35,4 +35,3 @@ parcelable EnergyMeasurement {
*/
long energyUWs;
}