summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com/android/internal
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-07-14 23:24:03 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-14 18:38:02 +0000
commit77ec2ceac689d80c8e645da4a83f0e5af8077cbc (patch)
treea2cbd50c953c494b16fda440a692ab61f3c0e536 /telecomm/java/com/android/internal
parenta5a2cf419d72b28d0ce3948199d6f6874d6dbf9b (diff)
parent864a2b291be09e3d260cd9e9d8fab37504188e5b (diff)
downloadframeworks_base-77ec2ceac689d80c8e645da4a83f0e5af8077cbc.zip
frameworks_base-77ec2ceac689d80c8e645da4a83f0e5af8077cbc.tar.gz
frameworks_base-77ec2ceac689d80c8e645da4a83f0e5af8077cbc.tar.bz2
Merge "Remove CallServiceProvider and CallServiceDescriptor do not merge" into lmp-dev
Diffstat (limited to 'telecomm/java/com/android/internal')
-rw-r--r--telecomm/java/com/android/internal/telecomm/ICallServiceLookupResponse.aidl32
-rw-r--r--telecomm/java/com/android/internal/telecomm/ICallServiceProvider.aidl32
2 files changed, 0 insertions, 64 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ICallServiceLookupResponse.aidl b/telecomm/java/com/android/internal/telecomm/ICallServiceLookupResponse.aidl
deleted file mode 100644
index 10d73be..0000000
--- a/telecomm/java/com/android/internal/telecomm/ICallServiceLookupResponse.aidl
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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;
-
-import android.os.IBinder;
-import android.telecomm.CallServiceDescriptor;
-import java.util.List;
-
-/**
- * Internal remote interface for call service lookup response.
- *
- * @see android.telecomm.CallServiceLookupResponse
- *
- * @hide
- */
-oneway interface ICallServiceLookupResponse {
- void setCallServiceDescriptors(in List<CallServiceDescriptor> callServiceDescriptors);
-}
diff --git a/telecomm/java/com/android/internal/telecomm/ICallServiceProvider.aidl b/telecomm/java/com/android/internal/telecomm/ICallServiceProvider.aidl
deleted file mode 100644
index 96daeed..0000000
--- a/telecomm/java/com/android/internal/telecomm/ICallServiceProvider.aidl
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2013 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;
-
-import android.telecomm.CallServiceDescriptor;
-
-import com.android.internal.telecomm.ICallServiceLookupResponse;
-
-/**
- * Internal remote interface for call service providers.
- *
- * @see android.telecomm.CallServiceProvider
- *
- * @hide
- */
-oneway interface ICallServiceProvider {
- void lookupCallServices(in ICallServiceLookupResponse response);
-}