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

Commit 9cd89a40 authored by Dongwon Kang's avatar Dongwon Kang Committed by Android (Google) Code Review
Browse files

Merge "TIF: Address API review comments" into nyc-dev

parents f445f76e b55c7517
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -22965,7 +22965,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);
@@ -23033,7 +23033,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();
@@ -23092,7 +23092,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
@@ -24633,7 +24633,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);
@@ -24778,7 +24778,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);
@@ -24846,7 +24846,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
@@ -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 {
+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