Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 138757db authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "Make OBB results a one-way call" into gingerbread

parents c33acae9 b7db2726
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -112,7 +112,8 @@ public interface IObbActionListener extends IInterface {
                    _data.writeString(filename);
                    _data.writeInt(nonce);
                    _data.writeInt(status);
                    mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply, 0);
                    mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
                            Binder.FLAG_ONEWAY);
                    _reply.readException();
                } finally {
                    _reply.recycle();
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ class MountService extends IMountService.Stub
    private static final boolean LOCAL_LOGD = false;
    private static final boolean DEBUG_UNMOUNT = false;
    private static final boolean DEBUG_EVENTS = false;
    private static final boolean DEBUG_OBB = true;
    private static final boolean DEBUG_OBB = false;

    private static final String TAG = "MountService";