commit | 06ccdb85a098429563f84a56ba547ae77c6c0426 | [log] [tgz] |
---|---|---|
author | Tyler Gunn <tgunn@google.com> | Tue Mar 08 14:25:40 2016 -0800 |
committer | Tyler Gunn <tgunn@google.com> | Tue Mar 08 14:25:40 2016 -0800 |
tree | 70b00ded8c9a62f3d3fc126bbd349266abce14f9 | |
parent | 6fe7f2525cdb33c8024229c9d6782a357814eeaf [diff] |
Modify sendConnectionEvent API calls. Ensure new prototype is used. Bug: 27458894 Change-Id: I9905cfd45b3c42007bf7abc58f49c5f636b4f128
diff --git a/src/com/android/services/telephony/TelephonyConnection.java b/src/com/android/services/telephony/TelephonyConnection.java index 3eff38f..6ab1f6b 100644 --- a/src/com/android/services/telephony/TelephonyConnection.java +++ b/src/com/android/services/telephony/TelephonyConnection.java
@@ -201,9 +201,9 @@ // If starting the hold tone, send a connection event to Telecom which will // cause it to play the on hold tone. if (playTone) { - sendConnectionEvent(EVENT_ON_HOLD_TONE_START); + sendConnectionEvent(EVENT_ON_HOLD_TONE_START, null); } else { - sendConnectionEvent(EVENT_ON_HOLD_TONE_END); + sendConnectionEvent(EVENT_ON_HOLD_TONE_END, null); } } break;