diff options
| author | Nancy Chen <nancychen@google.com> | 2014-08-29 17:14:53 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-08-29 17:14:54 +0000 |
| commit | 551056ec0fd274f4696c2cf1ec9c62298f7f7226 (patch) | |
| tree | 91b952cc97e919200e3b62f56ceae9329d277f54 | |
| parent | 4450c18e159601d218f3754309087b0941f268db (diff) | |
| parent | da227c7fdd5be646d51b8d4e0627a43fe40c57b1 (diff) | |
| download | frameworks_base-551056ec0fd274f4696c2cf1ec9c62298f7f7226.zip frameworks_base-551056ec0fd274f4696c2cf1ec9c62298f7f7226.tar.gz frameworks_base-551056ec0fd274f4696c2cf1ec9c62298f7f7226.tar.bz2 | |
Merge "Hide AIDL for RemoteServiceCallback in telecomm" into lmp-dev
| -rw-r--r-- | api/current.txt | 16 | ||||
| -rw-r--r-- | telecomm/java/com/android/internal/telecomm/RemoteServiceCallback.aidl | 2 |
2 files changed, 2 insertions, 16 deletions
diff --git a/api/current.txt b/api/current.txt index c6b8690..6815ba1 100644 --- a/api/current.txt +++ b/api/current.txt @@ -39587,22 +39587,6 @@ package android.widget { } -package com.android.internal.telecomm { - - public abstract interface RemoteServiceCallback implements android.os.IInterface { - method public abstract void onError() throws android.os.RemoteException; - method public abstract void onResult(java.util.List<android.content.ComponentName>, java.util.List<android.os.IBinder>) throws android.os.RemoteException; - } - - public static abstract class RemoteServiceCallback.Stub extends android.os.Binder implements com.android.internal.telecomm.RemoteServiceCallback { - ctor public RemoteServiceCallback.Stub(); - method public android.os.IBinder asBinder(); - method public static com.android.internal.telecomm.RemoteServiceCallback asInterface(android.os.IBinder); - method public boolean onTransact(int, android.os.Parcel, android.os.Parcel, int) throws android.os.RemoteException; - } - -} - package com.android.internal.util { public abstract interface Predicate { diff --git a/telecomm/java/com/android/internal/telecomm/RemoteServiceCallback.aidl b/telecomm/java/com/android/internal/telecomm/RemoteServiceCallback.aidl index 42c77d7..0ab7564 100644 --- a/telecomm/java/com/android/internal/telecomm/RemoteServiceCallback.aidl +++ b/telecomm/java/com/android/internal/telecomm/RemoteServiceCallback.aidl @@ -20,6 +20,8 @@ import android.content.ComponentName; /** * Simple response callback object. + * + * {@hide} */ oneway interface RemoteServiceCallback { void onError(); |
