aboutsummaryrefslogtreecommitdiff
path: root/car-lib/src/android/car/IUsbAoapSupportCheckService.aidl
diff options
context:
space:
mode:
authorVitalii Tomkiv <vitalit@google.com>2016-08-26 13:38:03 -0700
committerVitalii Tomkiv <vitalit@google.com>2016-09-22 16:51:50 -0700
commitb6af5c511a7f78e6bec870a5a0f660dabda45665 (patch)
treee5f43d7de1246f8e37ce638a9f132dd1c407214b /car-lib/src/android/car/IUsbAoapSupportCheckService.aidl
parent07154574a4913232fe5a2aaa9bf2c051ff1861b4 (diff)
downloadCar-b6af5c511a7f78e6bec870a5a0f660dabda45665.tar.gz
Add USB host manager in KitchenSink.
bug: 31321014 Test: this is test app on it's own. Change-Id: If6bd698930d128c22b55215d1fc0ac1ba6b08013
Diffstat (limited to 'car-lib/src/android/car/IUsbAoapSupportCheckService.aidl')
-rw-r--r--car-lib/src/android/car/IUsbAoapSupportCheckService.aidl28
1 files changed, 28 insertions, 0 deletions
diff --git a/car-lib/src/android/car/IUsbAoapSupportCheckService.aidl b/car-lib/src/android/car/IUsbAoapSupportCheckService.aidl
new file mode 100644
index 0000000000..3e7735781b
--- /dev/null
+++ b/car-lib/src/android/car/IUsbAoapSupportCheckService.aidl
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2016 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.car;
+
+import android.hardware.usb.UsbDevice;
+
+/**
+ * Binder interface for service to check USB AOAP mode support.
+ *
+ * @hide
+ */
+interface IUsbAoapSupportCheckService {
+ boolean isDeviceSupported(in UsbDevice device) = 0;
+}