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

Commit 86641345 authored by Yixiao Luo's avatar Yixiao Luo Committed by Android (Google) Code Review
Browse files

Merge "TIAF: add missed type TableRequest in base class parcel creator"

parents fb7919b9 2c527b44
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -56,6 +56,8 @@ public abstract class BroadcastInfoRequest implements Parcelable {
                    switch (type) {
                    switch (type) {
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                            return TsRequest.createFromParcelBody(source);
                            return TsRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_TABLE:
                            return TableRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                            return SectionRequest.createFromParcelBody(source);
                            return SectionRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_PES:
                        case TvInputManager.BROADCAST_INFO_TYPE_PES:
+2 −0
Original line number Original line Diff line number Diff line
@@ -57,6 +57,8 @@ public abstract class BroadcastInfoResponse implements Parcelable {
                    switch (type) {
                    switch (type) {
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                            return TsResponse.createFromParcelBody(source);
                            return TsResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_TABLE:
                            return TableResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                            return SectionResponse.createFromParcelBody(source);
                            return SectionResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_PES:
                        case TvInputManager.BROADCAST_INFO_TYPE_PES: