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

Commit ed9c5ef6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Small fixes of MediaSession"

parents daf5dc91 3c0ec77c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ public final class MediaSession {
            SessionLink sessionLink = manager.createSession(cbLink, tag);
            mImpl = new MediaSessionEngine(context, sessionLink, cbLink, cbStub,
                    context.getResources().getDimensionPixelSize(
                            com.android.internal.R.dimen.config_mediaMetadataBitmapMaxSize));
                            android.R.dimen.config_mediaMetadataBitmapMaxSize));
        } catch (RuntimeException e) {
            throw new RuntimeException("Remote error creating session.", e);
        }
@@ -723,7 +723,7 @@ public final class MediaSession {

        private QueueItem(Parcel in) {
            mImpl = new MediaSessionEngine.QueueItem(in);
            mId = in.readLong();
            mId = mImpl.getQueueId();
        }

        /**