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

Commit 3c0ec77c authored by Sungsoo Lim's avatar Sungsoo Lim
Browse files

Small fixes of MediaSession

Test: build
Change-Id: I34e0a188f7792042898a8dbe4befc755936f7d39
parent bfda3a93
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();
        }

        /**