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

Commit 29396bc9 authored by Sungsoo Lim's avatar Sungsoo Lim Committed by Android Git Automerger
Browse files

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

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

* commit '26eed049':
  Send a message with data in MediaController.MessageHandler.post()
parents ebfb5159 26eed049
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();
        }
    }