diff options
author | Chiao Cheng <chiaocheng@google.com> | 2013-09-20 10:56:41 -0700 |
---|---|---|
committer | Chiao Cheng <chiaocheng@google.com> | 2013-09-20 10:56:41 -0700 |
commit | f73d2a97203261016e6c3f35ab8ab3a4a4f4c0b7 (patch) | |
tree | 5a3d60cc0c73a3761c7f17ac3235856a2a97c4b2 | |
parent | eaebb31a53f1f44251009477e090813cb569f789 (diff) |
Perform reverse lookup for call shortcut.
When a user turns on the feature for the first time, do a lookup on the call
shortcut.
Bug: 10822944
Change-Id: I75801a7e47ea10261f54068fc29104281f902f6f
-rw-r--r-- | src/com/android/dialer/calllog/CallLogAdapter.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/dialer/calllog/CallLogAdapter.java b/src/com/android/dialer/calllog/CallLogAdapter.java index 8b7e27d5a..e9d3384ed 100644 --- a/src/com/android/dialer/calllog/CallLogAdapter.java +++ b/src/com/android/dialer/calllog/CallLogAdapter.java @@ -336,8 +336,7 @@ public class CallLogAdapter extends GroupingListAdapter * up the contact information (if it has not been already started). Otherwise, it will be * started with a delay. See {@link #START_PROCESSING_REQUESTS_DELAY_MILLIS}. */ - @VisibleForTesting - void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, + protected void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, boolean immediate) { ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo); synchronized (mRequests) { |