summaryrefslogtreecommitdiff
path: root/power
diff options
context:
space:
mode:
authorWei Wang <wvw@google.com>2021-04-06 19:43:00 -0700
committerWei Wang <wvw@google.com>2021-04-06 19:45:51 -0700
commit12495d2ddd2ca8c56bfe672d22dd1310e8ab200f (patch)
tree398f941b0d8f0fca473d92fbda1e3e52290622ca /power
parente5aeed6a9f742f0cb438f023797c0f48ba153167 (diff)
power: refine comment for pause/resume session
Bug: 163794808 Test: Build Change-Id: I37d15e0b0ae6646b89b63efde3731368181a01d4
Diffstat (limited to 'power')
-rw-r--r--power/aidl/android/hardware/power/IPowerHintSession.aidl6
1 files changed, 3 insertions, 3 deletions
diff --git a/power/aidl/android/hardware/power/IPowerHintSession.aidl b/power/aidl/android/hardware/power/IPowerHintSession.aidl
index 9a85bee997..c289448855 100644
--- a/power/aidl/android/hardware/power/IPowerHintSession.aidl
+++ b/power/aidl/android/hardware/power/IPowerHintSession.aidl
@@ -43,17 +43,17 @@ oneway interface IPowerHintSession {
void reportActualWorkDuration(in WorkDuration[] durations);
/**
- * Pause the session when the application is not in foreground and above
+ * Pause the session when the application is not allowed to send hint in framework.
*/
void pause();
/**
- * Resume the session when the application is not in foreground and above
+ * Resume the session when the application is allowed to send hint in framework.
*/
void resume();
/**
- * Close the session to release resources
+ * Close the session to release resources.
*/
void close();
}