summaryrefslogtreecommitdiffstats
path: root/core/java/android/os
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2010-05-17 14:59:39 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-05-17 14:59:39 -0700
commitc5859388bd6c666a83017869bf8a9935defe0bd0 (patch)
tree58a4f14842bdabbbaa945a98152cc7e004f5aa5c /core/java/android/os
parent23100fd1ec5411876b13f3cac9a457dc863f932c (diff)
parent3e9e9696f147c8df1236c1d7aa9496124864a81c (diff)
downloadframeworks_base-c5859388bd6c666a83017869bf8a9935defe0bd0.zip
frameworks_base-c5859388bd6c666a83017869bf8a9935defe0bd0.tar.gz
frameworks_base-c5859388bd6c666a83017869bf8a9935defe0bd0.tar.bz2
am 3e9e9696: am eb9cbb8f: Resurrect flashlight support in obsolete IHardwareService Binder API.
Merge commit '3e9e9696f147c8df1236c1d7aa9496124864a81c' into kraken * commit '3e9e9696f147c8df1236c1d7aa9496124864a81c': Resurrect flashlight support in obsolete IHardwareService Binder API.
Diffstat (limited to 'core/java/android/os')
-rwxr-xr-xcore/java/android/os/IHardwareService.aidl26
1 files changed, 26 insertions, 0 deletions
diff --git a/core/java/android/os/IHardwareService.aidl b/core/java/android/os/IHardwareService.aidl
new file mode 100755
index 0000000..38abfc0
--- /dev/null
+++ b/core/java/android/os/IHardwareService.aidl
@@ -0,0 +1,26 @@
+/**
+ * Copyright (c) 2007, 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.os;
+
+/** {@hide} */
+interface IHardwareService
+{
+ // obsolete flashlight support
+ boolean getFlashlightEnabled();
+ void setFlashlightEnabled(boolean on);
+}
+