aboutsummaryrefslogtreecommitdiff
path: root/car-lib/src/android/car/IAppFocus.aidl
diff options
context:
space:
mode:
authorJason Tholstrup <jthol@google.com>2016-09-22 16:32:14 -0700
committerJason Tholstrup <jthol@google.com>2016-10-03 15:11:48 -0700
commitd72b53500006e84b0c69e650878267c693c164a3 (patch)
tree280e923477b438110c2a918368313bbd16dc0986 /car-lib/src/android/car/IAppFocus.aidl
parent4fbde4fb755440713a0ec4cdaaab4f30630b58d3 (diff)
downloadCar-d72b53500006e84b0c69e650878267c693c164a3.tar.gz
Many API council fixes.
bug: 31913591 Change-Id: I3a0f9a57ecdccdae6c0b3b98b5bbf9b31733933b
Diffstat (limited to 'car-lib/src/android/car/IAppFocus.aidl')
-rw-r--r--car-lib/src/android/car/IAppFocus.aidl16
1 files changed, 8 insertions, 8 deletions
diff --git a/car-lib/src/android/car/IAppFocus.aidl b/car-lib/src/android/car/IAppFocus.aidl
index 1888c246ec..80ebb2f015 100644
--- a/car-lib/src/android/car/IAppFocus.aidl
+++ b/car-lib/src/android/car/IAppFocus.aidl
@@ -21,13 +21,13 @@ import android.car.IAppFocusOwnershipListener;
/** @hide */
interface IAppFocus {
- void registerFocusListener(IAppFocusListener listener, int appType) = 0;
- void unregisterFocusListener(IAppFocusListener listener, int appType) = 1;
+ void registerFocusListener(IAppFocusListener callback, int appType) = 0;
+ void unregisterFocusListener(IAppFocusListener callback, int appType) = 1;
int[] getActiveAppTypes() = 2;
- /** listener used as a token */
- boolean isOwningFocus(IAppFocusOwnershipListener listener, int appType) = 3;
- /** listener used as a token */
- int requestAppFocus(IAppFocusOwnershipListener listener, int appType) = 4;
- /** listener used as a token */
- void abandonAppFocus(IAppFocusOwnershipListener listener, int appType) = 5;
+ /** callback used as a token */
+ boolean isOwningFocus(IAppFocusOwnershipListener callback, int appType) = 3;
+ /** callback used as a token */
+ int requestAppFocus(IAppFocusOwnershipListener callback, int appType) = 4;
+ /** callback used as a token */
+ void abandonAppFocus(IAppFocusOwnershipListener callback, int appType) = 5;
}