aboutsummaryrefslogtreecommitdiff
path: root/car-lib/src/android
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2017-06-05 23:19:53 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-06-05 23:19:55 +0000
commite8c67cd9654d0d11c583b627fb65f6426be9851a (patch)
tree5abbcb16670b390111a06929e2353ce5fa04fa8d /car-lib/src/android
parent606db365b2a36050015cf37e4b2541a53c7d3b3a (diff)
parentaab47cd81c75e4fe4a486a665f61287d83f79967 (diff)
downloadCar-e8c67cd9654d0d11c583b627fb65f6426be9851a.tar.gz
Merge "add skeleton for CarServiceHelperService support"
Diffstat (limited to 'car-lib/src/android')
-rw-r--r--car-lib/src/android/car/ICar.aidl14
1 files changed, 8 insertions, 6 deletions
diff --git a/car-lib/src/android/car/ICar.aidl b/car-lib/src/android/car/ICar.aidl
index 1510438fc3..9f8c367aec 100644
--- a/car-lib/src/android/car/ICar.aidl
+++ b/car-lib/src/android/car/ICar.aidl
@@ -16,12 +16,14 @@
package android.car;
-import android.content.Intent;
-
-import android.car.ICarConnectionListener;
-
/** @hide */
interface ICar {
- IBinder getCarService(in String serviceName) = 0;
- int getCarConnectionType() = 1;
+ /**
+ * IBinder is ICarServiceHelper but passed as IBinder due to aidl hidden.
+ * Only this method is oneway as it is called from system server.
+ * This should be the 1st method. Do not change the order.
+ */
+ oneway void setCarServiceHelper(in IBinder helper) = 0;
+ IBinder getCarService(in String serviceName) = 1;
+ int getCarConnectionType() = 2;
}