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

Commit 26eed049 authored by Sungsoo Lim's avatar Sungsoo Lim Committed by Android Git Automerger
Browse files

am f819ac38: am 6dddc7d1: Merge "Send a message with data in...

am f819ac38: am 6dddc7d1: Merge "Send a message with data in MediaController.MessageHandler.post()" into mnc-dev

* commit 'f819ac38':
  Send a message with data in MediaController.MessageHandler.post()
parents ac8b0b02 f819ac38
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1018,7 +1018,9 @@ public final class MediaController {
        }

        public void post(int what, Object obj, Bundle data) {
            obtainMessage(what, obj).sendToTarget();
            Message msg = obtainMessage(what, obj);
            msg.setData(data);
            msg.sendToTarget();
        }
    }