summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/CallCommandClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'InCallUI/src/com/android/incallui/CallCommandClient.java')
-rw-r--r--InCallUI/src/com/android/incallui/CallCommandClient.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/InCallUI/src/com/android/incallui/CallCommandClient.java b/InCallUI/src/com/android/incallui/CallCommandClient.java
index 234c518de..52d2100c8 100644
--- a/InCallUI/src/com/android/incallui/CallCommandClient.java
+++ b/InCallUI/src/com/android/incallui/CallCommandClient.java
@@ -243,29 +243,4 @@ public class CallCommandClient {
}
}
- public void videoHandoff(int callId) {
- Log.i(this, "video handoff");
- if (mCommandService == null) {
- Log.e(this, "Cannot perform video handoff; CallCommandService == null");
- return;
- }
- try {
- mCommandService.videoHandoff(callId);
- } catch (RemoteException e) {
- Log.e(this, "Error performing video handoff.", e);
- }
- }
-
- public void connectionHandoff(int callId) {
- Log.i(this, "connection handoff");
- if (mCommandService == null) {
- Log.e(this, "Cannot perform connection handoff; CallCommandService == null");
- return;
- }
- try {
- mCommandService.connectionHandoff(callId);
- } catch (RemoteException e) {
- Log.e(this, "Error performing connection handoff.", e);
- }
- }
}