summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/CallCommandClient.java
diff options
context:
space:
mode:
authorChristine Chen <christinech@google.com>2013-08-06 16:03:54 -0700
committerChristine Chen <christinech@google.com>2013-08-07 15:51:09 -0700
commit3860ae4cd6e37e6e5438c81631b6857643691d9b (patch)
tree2443f1b8f29c3160477feb6f2b109df68a224025 /InCallUI/src/com/android/incallui/CallCommandClient.java
parent6d94d71f4ed7620b510c7321fbd32f978ef4833b (diff)
Adds support for text messages
Change-Id: Ibdb279a7dff0db710bcc1d6a313b486f6816ea65
Diffstat (limited to 'InCallUI/src/com/android/incallui/CallCommandClient.java')
-rw-r--r--InCallUI/src/com/android/incallui/CallCommandClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/InCallUI/src/com/android/incallui/CallCommandClient.java b/InCallUI/src/com/android/incallui/CallCommandClient.java
index 381d8d383..80a9e9e10 100644
--- a/InCallUI/src/com/android/incallui/CallCommandClient.java
+++ b/InCallUI/src/com/android/incallui/CallCommandClient.java
@@ -56,9 +56,9 @@ public class CallCommandClient {
}
}
- public void rejectCall(int callId) {
+ public void rejectCall(int callId, boolean rejectWithMessage, String message) {
try {
- mCommandService.rejectCall(callId);
+ mCommandService.rejectCall(callId, rejectWithMessage, message);
} catch (RemoteException e) {
Logger.e(this, "Error rejecting call.", e);
}