Porting DTMF post dial wait feature.
Bug: 10459289
Change-Id: Ib279fcdf71857abae218b70081f7da569901d80c
diff --git a/src/com/android/phone/CallHandlerServiceProxy.java b/src/com/android/phone/CallHandlerServiceProxy.java
index a57ac5b..4820b33 100644
--- a/src/com/android/phone/CallHandlerServiceProxy.java
+++ b/src/com/android/phone/CallHandlerServiceProxy.java
@@ -192,6 +192,26 @@
}
}
+
+ @Override
+ public void onPostDialWait(int callId, String remainingChars) {
+ try {
+ synchronized (mServiceAndQueueLock) {
+ if (mCallHandlerServiceGuarded == null) {
+ if (DBG) {
+ Log.d(TAG, "CallHandlerService not conneccted. Skipping "
+ + "onPostDialWait().");
+ }
+ return;
+ }
+ }
+
+ mCallHandlerServiceGuarded.onPostDialWait(callId, remainingChars);
+ } catch (Exception e) {
+ Log.e(TAG, "Remote exception handling onUpdate", e);
+ }
+ }
+
@Override
public void onAudioModeChange(int newMode, boolean muted) {
try {