diff options
author | Santos Cordon <santoscordon@google.com> | 2014-05-21 15:22:12 -0700 |
---|---|---|
committer | Santos Cordon <santoscordon@google.com> | 2014-05-28 03:36:36 +0000 |
commit | 3afed57a7d8a6e9d9fcaaa483a3c3e3652e2199a (patch) | |
tree | 69f82c8c68231034e180cb78d25d3ae6b3aea0ae /telecomm | |
parent | bbd8e6ffc600e078984cb68acf51c660c5c9fc81 (diff) | |
download | frameworks_base-3afed57a7d8a6e9d9fcaaa483a3c3e3652e2199a.zip frameworks_base-3afed57a7d8a6e9d9fcaaa483a3c3e3652e2199a.tar.gz frameworks_base-3afed57a7d8a6e9d9fcaaa483a3c3e3652e2199a.tar.bz2 |
Adding ITelecommService definition for Telecomm.
Until telecomm code moves into a system service, we need a way for
other apps to call into it for call-related functionality.
Initial implementation only has silenceRinger.
This is to be implemented by the telecomm code and used by
TelephonyManager (until we have a TelecommManager).
Change-Id: I9180797451dcb2e9029b20bed47f5d5cb8cddb9f
(cherry picked from commit b895606acf18dbb050c9a32106b3c9c2e5111829)
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/com/android/internal/telecomm/ITelecommService.aidl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl new file mode 100644 index 0000000..c439211 --- /dev/null +++ b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl @@ -0,0 +1,34 @@ +/* + * Copyright (C) 2014 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 com.android.internal.telecomm; + +/** + * Interface used to interact with Telecomm. Mostly this is used by TelephonyManager for passing + * commands that were previously handled by ITelephony. + * {@hide} + */ +oneway interface ITelecommService { + + /** + * Silence the ringer if an incoming call is currently ringing. + * (If vibrating, stop the vibrator also.) + * + * It's safe to call this if the ringer has already been silenced, or + * even if there's no incoming call. (If so, this method will do nothing.) + */ + void silenceRinger(); +} |