summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calllogutils
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2018-04-30 18:15:02 -0700
committerCopybara-Service <copybara-piper@google.com>2018-05-02 16:36:19 -0700
commit4a65002a1619ec70157b3c274a501286134cc7d4 (patch)
tree9d0dcb6a4f977fdd8092f25e245370e2d11da2af /java/com/android/dialer/calllogutils
parentcccd332af6185505101df03ebee11923d7ee5fd4 (diff)
Select SIM when calling back from call log.
Previously the NUI call log call backs with whatever SIM the call was made/received in, which is inconsistent with the old UI. The Old UI behavior should be kept. TEST=TAP Bug: 78291136 Test: TAP PiperOrigin-RevId: 194878167 Change-Id: If9c5adcbed6a194c801d2b558abb45573b97d2ae
Diffstat (limited to 'java/com/android/dialer/calllogutils')
-rw-r--r--java/com/android/dialer/calllogutils/CallLogRowActions.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/java/com/android/dialer/calllogutils/CallLogRowActions.java b/java/com/android/dialer/calllogutils/CallLogRowActions.java
index 2090fc32f..d23a15f78 100644
--- a/java/com/android/dialer/calllogutils/CallLogRowActions.java
+++ b/java/com/android/dialer/calllogutils/CallLogRowActions.java
@@ -21,7 +21,6 @@ import com.android.dialer.callintent.CallInitiationType;
import com.android.dialer.callintent.CallIntentBuilder;
import com.android.dialer.calllog.model.CoalescedRow;
import com.android.dialer.precall.PreCall;
-import com.android.dialer.telecom.TelecomUtil;
/** Actions which can be performed on a call log row. */
public final class CallLogRowActions {
@@ -38,9 +37,6 @@ public final class CallLogRowActions {
activity,
new CallIntentBuilder(
row.getNumber().getNormalizedNumber(), CallInitiationType.Type.CALL_LOG)
- .setPhoneAccountHandle(
- TelecomUtil.composePhoneAccountHandle(
- row.getPhoneAccountComponentName(), row.getPhoneAccountId()))
.setIsVideoCall((row.getFeatures() & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO));
}
}