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

Commit 5d304503 authored by Youngsang Cho's avatar Youngsang Cho Committed by Android (Google) Code Review
Browse files

Merge "TIF: call RecordingCallback.onConnected when SessionCallback.onConnected is called"

parents 5e4aa93d 82621b6c
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -284,6 +284,18 @@ public class TvRecordingClient {
            }
        }

        @Override
        void onConnected(TvInputManager.Session session) {
            if (DEBUG) {
                Log.d(TAG, "onConnected()");
            }
            if (this != mSessionCallback) {
                Log.w(TAG, "onConnected - session not created");
                return;
            }
            mCallback.onConnected();
        }

        @Override
        public void onSessionReleased(TvInputManager.Session session) {
            if (DEBUG) {