diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-04-05 14:27:12 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2012-04-05 14:42:11 -0700 |
commit | 4532e6158474a263d9d26c2b42240bcf7ce9b172 (patch) | |
tree | e0055acd68c0a8729077695ac671935aa58a1fad /core/java/android/hardware/input | |
parent | 9df6e7a926ce480baf70e97ee1b9ea387193f6ad (diff) | |
download | frameworks_base-4532e6158474a263d9d26c2b42240bcf7ce9b172.zip frameworks_base-4532e6158474a263d9d26c2b42240bcf7ce9b172.tar.gz frameworks_base-4532e6158474a263d9d26c2b42240bcf7ce9b172.tar.bz2 |
Refactor input system into its own service.
Extracted the input system from the window manager service into
a new input manager service. This will make it easier to
offer new input-related features to applications.
Cleaned up the input manager service JNI layer somewhat to get rid
of all of the unnecessary checks for whether the input manager
had been initialized. Simplified the callback layer as well.
Change-Id: I3175d01307aed1420780d3c093d2694b41edf66e
Diffstat (limited to 'core/java/android/hardware/input')
-rw-r--r-- | core/java/android/hardware/input/IInputManager.aidl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/core/java/android/hardware/input/IInputManager.aidl b/core/java/android/hardware/input/IInputManager.aidl new file mode 100644 index 0000000..85061bb --- /dev/null +++ b/core/java/android/hardware/input/IInputManager.aidl @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2012 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.hardware.input; + +/** @hide */ +interface IInputManager { +} |