summaryrefslogtreecommitdiffstats
path: root/src/com/android/contacts/ContactSaveService.java
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2013-10-28 15:20:15 -0700
committerYorke Lee <yorkelee@google.com>2013-11-05 14:07:05 -0800
commitcd321f65f1e50409812976380ad1f0fdb3fa35cb (patch)
tree5bdea72567bd6c8a254eecc05c175faf70c59baf /src/com/android/contacts/ContactSaveService.java
parent21da4247c1bd67c4f8bfe51c034a58f538189cb4 (diff)
downloadpackages_apps_Contacts-cd321f65f1e50409812976380ad1f0fdb3fa35cb.tar.gz
packages_apps_Contacts-cd321f65f1e50409812976380ad1f0fdb3fa35cb.tar.bz2
packages_apps_Contacts-cd321f65f1e50409812976380ad1f0fdb3fa35cb.zip
Move ContactLoader related code to ContactsCommon
This CL simply moves classes from Contacts into ContactsCommon. This is needed so that Dialer can use ContactLoader related code for b/11294679. A ContactLoader will also be needed in the future to allow InCallUI to download hi-res photos while in call. Bug: 11294679 Change-Id: Ia033f3ea2406a907a4e71290c9ce810a5583dab8
Diffstat (limited to 'src/com/android/contacts/ContactSaveService.java')
-rw-r--r--src/com/android/contacts/ContactSaveService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/contacts/ContactSaveService.java b/src/com/android/contacts/ContactSaveService.java
index 9f916fb70..7a8f9f392 100644
--- a/src/com/android/contacts/ContactSaveService.java
+++ b/src/com/android/contacts/ContactSaveService.java
@@ -49,9 +49,9 @@ import android.widget.Toast;
import com.android.contacts.common.database.ContactUpdateUtils;
import com.android.contacts.common.model.AccountTypeManager;
-import com.android.contacts.model.RawContactDelta;
-import com.android.contacts.model.RawContactDeltaList;
-import com.android.contacts.model.RawContactModifier;
+import com.android.contacts.common.model.RawContactDelta;
+import com.android.contacts.common.model.RawContactDeltaList;
+import com.android.contacts.common.model.RawContactModifier;
import com.android.contacts.common.model.account.AccountWithDataSet;
import com.android.contacts.util.CallerInfoCacheUtils;
import com.android.contacts.util.ContactPhotoUtils;