diff options
author | Mike Lockwood <lockwood@android.com> | 2010-05-17 14:56:53 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-05-17 14:56:53 -0700 |
commit | 3e9e9696f147c8df1236c1d7aa9496124864a81c (patch) | |
tree | 8865c55bdf193d4cd85eb46dca965de5cdfb001a /core | |
parent | 8ea405d196c8b536047d961801bb2b6c18a3ea2a (diff) | |
parent | eb9cbb8fdddf4c887004b20b504083035d57a15f (diff) | |
download | frameworks_base-3e9e9696f147c8df1236c1d7aa9496124864a81c.zip frameworks_base-3e9e9696f147c8df1236c1d7aa9496124864a81c.tar.gz frameworks_base-3e9e9696f147c8df1236c1d7aa9496124864a81c.tar.bz2 |
am eb9cbb8f: Resurrect flashlight support in obsolete IHardwareService Binder API.
Merge commit 'eb9cbb8fdddf4c887004b20b504083035d57a15f' into froyo-plus-aosp
* commit 'eb9cbb8fdddf4c887004b20b504083035d57a15f':
Resurrect flashlight support in obsolete IHardwareService Binder API.
Diffstat (limited to 'core')
-rwxr-xr-x | core/java/android/os/IHardwareService.aidl | 26 |
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); +} + |