Merge "Add workaround for b/124210145" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
a8cf106193
@@ -549,4 +549,22 @@ public class MbmsDownloadServiceBase extends IMbmsDownloadService.Stub {
|
|||||||
*/
|
*/
|
||||||
public void onAppCallbackDied(int uid, int subscriptionId) {
|
public void onAppCallbackDied(int uid, int subscriptionId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Following two methods exist to workaround b/124210145
|
||||||
|
/** @hide */
|
||||||
|
@SystemApi
|
||||||
|
@TestApi
|
||||||
|
@Override
|
||||||
|
public android.os.IBinder asBinder() {
|
||||||
|
return super.asBinder();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @hide */
|
||||||
|
@SystemApi
|
||||||
|
@TestApi
|
||||||
|
@Override
|
||||||
|
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply,
|
||||||
|
int flags) throws RemoteException {
|
||||||
|
return super.onTransact(code, data, reply, flags);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -294,4 +294,23 @@ public class MbmsStreamingServiceBase extends IMbmsStreamingService.Stub {
|
|||||||
*/
|
*/
|
||||||
public void onAppCallbackDied(int uid, int subscriptionId) {
|
public void onAppCallbackDied(int uid, int subscriptionId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Following two methods exist to workaround b/124210145
|
||||||
|
/** @hide */
|
||||||
|
@SystemApi
|
||||||
|
@TestApi
|
||||||
|
@Override
|
||||||
|
public android.os.IBinder asBinder() {
|
||||||
|
return super.asBinder();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @hide */
|
||||||
|
@SystemApi
|
||||||
|
@TestApi
|
||||||
|
@Override
|
||||||
|
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply,
|
||||||
|
int flags) throws RemoteException {
|
||||||
|
return super.onTransact(code, data, reply, flags);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user