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

Commit b55c7517 authored by Dongwon Kang's avatar Dongwon Kang
Browse files

TIF: Address API review comments

Bug: 27386052
Change-Id: I242819e0817723e247b8fe646d534899ab50af76
parent 168d5e4e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -22976,7 +22976,7 @@ package android.media.tv {
  }
  public static final class TvInputInfo.Builder {
    ctor public TvInputInfo.Builder(android.content.Context, java.lang.Class<?>);
    ctor public TvInputInfo.Builder(android.content.Context, android.content.ComponentName);
    method public android.media.tv.TvInputInfo build() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public android.media.tv.TvInputInfo.Builder setCanRecord(boolean);
    method public android.media.tv.TvInputInfo.Builder setTunerCount(int);
@@ -23044,7 +23044,7 @@ package android.media.tv {
    ctor public TvInputService.RecordingSession(android.content.Context);
    method public void notifyError(int);
    method public void notifyRecordingStopped(android.net.Uri);
    method public void notifyTuned();
    method public void notifyTuned(android.net.Uri);
    method public abstract void onRelease();
    method public abstract void onStartRecording(android.net.Uri);
    method public abstract void onStopRecording();
@@ -23103,7 +23103,7 @@ package android.media.tv {
    method public void onDisconnected(java.lang.String);
    method public void onError(int);
    method public void onRecordingStopped(android.net.Uri);
    method public void onTuned();
    method public void onTuned(android.net.Uri);
  }
  public final class TvTrackInfo implements android.os.Parcelable {
+3 −3
Original line number Diff line number Diff line
@@ -24663,7 +24663,7 @@ package android.media.tv {
  }
  public static final class TvInputInfo.Builder {
    ctor public TvInputInfo.Builder(android.content.Context, java.lang.Class<?>);
    ctor public TvInputInfo.Builder(android.content.Context, android.content.ComponentName);
    method public android.media.tv.TvInputInfo build() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public android.media.tv.TvInputInfo.Builder setCanRecord(boolean);
    method public android.media.tv.TvInputInfo.Builder setHdmiDeviceInfo(android.hardware.hdmi.HdmiDeviceInfo);
@@ -24808,7 +24808,7 @@ package android.media.tv {
    method public void notifyError(int);
    method public void notifyRecordingStopped(android.net.Uri);
    method public void notifySessionEvent(java.lang.String, android.os.Bundle);
    method public void notifyTuned();
    method public void notifyTuned(android.net.Uri);
    method public void onAppPrivateCommand(java.lang.String, android.os.Bundle);
    method public abstract void onRelease();
    method public abstract void onStartRecording(android.net.Uri);
@@ -24876,7 +24876,7 @@ package android.media.tv {
    method public void onError(int);
    method public void onEvent(java.lang.String, java.lang.String, android.os.Bundle);
    method public void onRecordingStopped(android.net.Uri);
    method public void onTuned();
    method public void onTuned(android.net.Uri);
  }
  public class TvStreamConfig implements android.os.Parcelable {
+3 −3
Original line number Diff line number Diff line
@@ -22985,7 +22985,7 @@ package android.media.tv {
  }
  public static final class TvInputInfo.Builder {
    ctor public TvInputInfo.Builder(android.content.Context, java.lang.Class<?>);
    ctor public TvInputInfo.Builder(android.content.Context, android.content.ComponentName);
    method public android.media.tv.TvInputInfo build() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public android.media.tv.TvInputInfo.Builder setCanRecord(boolean);
    method public android.media.tv.TvInputInfo.Builder setTunerCount(int);
@@ -23053,7 +23053,7 @@ package android.media.tv {
    ctor public TvInputService.RecordingSession(android.content.Context);
    method public void notifyError(int);
    method public void notifyRecordingStopped(android.net.Uri);
    method public void notifyTuned();
    method public void notifyTuned(android.net.Uri);
    method public abstract void onRelease();
    method public abstract void onStartRecording(android.net.Uri);
    method public abstract void onStopRecording();
@@ -23112,7 +23112,7 @@ package android.media.tv {
    method public void onDisconnected(java.lang.String);
    method public void onError(int);
    method public void onRecordingStopped(android.net.Uri);
    method public void onTuned();
    method public void onTuned(android.net.Uri);
  }
  public final class TvTrackInfo implements android.os.Parcelable {
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ oneway interface ITvInputClient {
    void onTimeShiftCurrentPositionChanged(long timeMs, int seq);

    // For the recording session
    void onTuned(int seq);
    void onTuned(int seq, in Uri channelUri);
    void onRecordingStopped(in Uri recordedProgramUri, int seq);
    void onError(int error, int seq);
}
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ oneway interface ITvInputSessionCallback {
    void onTimeShiftCurrentPositionChanged(long timeMs);

    // For the recording session
    void onTuned();
    void onTuned(in Uri channelUri);
    void onRecordingStopped(in Uri recordedProgramUri);
    void onError(int error);
}
Loading