diff options
author | Tyler Gunn <tgunn@google.com> | 2015-06-04 11:08:54 -0700 |
---|---|---|
committer | Tyler Gunn <tgunn@google.com> | 2015-06-04 11:08:54 -0700 |
commit | 295f5d7777ba63836bf75cb4de15bdaae06dfc1f (patch) | |
tree | 0a687a3c3948cb7015fa34ccb7aeb0ee7d3a4e9d /telecomm/java/android/telecom/InCallService.java | |
parent | 6ef831fe1a953f6b67f3c6a43bde38e80689698b (diff) |
Add API docs for RemoteConnection VideoProvider/Callback.
Bug: 21573551
Change-Id: I434d83fa84f9515634776820b2e6a8004cf693ee
Diffstat (limited to 'telecomm/java/android/telecom/InCallService.java')
-rw-r--r-- | telecomm/java/android/telecom/InCallService.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/telecomm/java/android/telecom/InCallService.java b/telecomm/java/android/telecom/InCallService.java index f7f442549cdb..fb985ceead7c 100644 --- a/telecomm/java/android/telecom/InCallService.java +++ b/telecomm/java/android/telecom/InCallService.java @@ -413,6 +413,8 @@ public abstract class InCallService extends Service { /** * Clears the video call callback set via {@link #registerCallback}. + * + * @param callback The video call callback to clear. */ public abstract void unregisterCallback(VideoCall.Callback callback); @@ -524,7 +526,8 @@ public abstract class InCallService extends Service { /** * The {@link InCallService} extends this class to provide a means of receiving callbacks - * from the {@link Connection.VideoProvider}.<p> + * from the {@link Connection.VideoProvider}. + * <p> * When the {@link InCallService} receives the * {@link Call.Callback#onVideoCallChanged(Call, VideoCall)} callback, it should create an * instance its {@link VideoCall.Callback} implementation and set it on the @@ -533,7 +536,7 @@ public abstract class InCallService extends Service { public static abstract class Callback { /** * Called when the {@link Connection.VideoProvider} receives a session modification - * request is received from the peer device. + * request from the peer device. * <p> * The {@link InCallService} may potentially prompt the user to confirm whether they * wish to accept the request, or decide to automatically accept the request. In either |