Modify AIDLs to include Session.Info
am: b32d4f8b5c
Change-Id: Ibbac4c74b5a0c4fcd5524c97acef5fc078d80cb7
This commit is contained in:
@@ -855,7 +855,7 @@ public final class RemoteConnection {
|
||||
public void abort() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.abort(mConnectionId);
|
||||
mConnectionService.abort(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -867,7 +867,7 @@ public final class RemoteConnection {
|
||||
public void answer() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.answer(mConnectionId);
|
||||
mConnectionService.answer(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -881,7 +881,7 @@ public final class RemoteConnection {
|
||||
public void answer(int videoState) {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.answerVideo(mConnectionId, videoState);
|
||||
mConnectionService.answerVideo(mConnectionId, videoState, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -893,7 +893,7 @@ public final class RemoteConnection {
|
||||
public void reject() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.reject(mConnectionId);
|
||||
mConnectionService.reject(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -905,7 +905,7 @@ public final class RemoteConnection {
|
||||
public void hold() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.hold(mConnectionId);
|
||||
mConnectionService.hold(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -917,7 +917,7 @@ public final class RemoteConnection {
|
||||
public void unhold() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.unhold(mConnectionId);
|
||||
mConnectionService.unhold(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -929,7 +929,7 @@ public final class RemoteConnection {
|
||||
public void disconnect() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.disconnect(mConnectionId);
|
||||
mConnectionService.disconnect(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -947,7 +947,7 @@ public final class RemoteConnection {
|
||||
public void playDtmfTone(char digit) {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.playDtmfTone(mConnectionId, digit);
|
||||
mConnectionService.playDtmfTone(mConnectionId, digit, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -963,7 +963,7 @@ public final class RemoteConnection {
|
||||
public void stopDtmfTone() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.stopDtmfTone(mConnectionId);
|
||||
mConnectionService.stopDtmfTone(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -993,7 +993,8 @@ public final class RemoteConnection {
|
||||
public void postDialContinue(boolean proceed) {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.onPostDialContinue(mConnectionId, proceed);
|
||||
mConnectionService.onPostDialContinue(mConnectionId, proceed,
|
||||
null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -1007,7 +1008,7 @@ public final class RemoteConnection {
|
||||
public void pullExternalCall() {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.pullExternalCall(mConnectionId);
|
||||
mConnectionService.pullExternalCall(mConnectionId, null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
@@ -1034,7 +1035,8 @@ public final class RemoteConnection {
|
||||
public void setCallAudioState(CallAudioState state) {
|
||||
try {
|
||||
if (mConnected) {
|
||||
mConnectionService.onCallAudioStateChanged(mConnectionId, state);
|
||||
mConnectionService.onCallAudioStateChanged(mConnectionId, state,
|
||||
null /*Session.Info*/);
|
||||
}
|
||||
} catch (RemoteException ignored) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user