summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java
diff options
context:
space:
mode:
authorwangqi <wangqi@google.com>2017-06-20 11:23:41 -0700
committerEric Erfanian <erfanian@google.com>2017-06-21 18:16:03 +0000
commit5b4becb8ca9cc6249d0cf0a074bf63d6999f3b5e (patch)
tree9ced1a3f07598cfb65cc3226368ba5321ee10107 /java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java
parentf0a8ccfcd370d26b3887fc8428dedf5596f42ca8 (diff)
Automated g4 rollback of changelist 158923709.
*** Reason for rollback *** It's not necessary anymore after we verified it could be controlled from server side. *** Original change description *** Flip flag to enable ReturnToCall bubble. Enables ReturnToCall bubble and changes the name of the flag so that it can be toggled independently from previous versions. *** Also in the change: Restore TODOs Test: TH PiperOrigin-RevId: 159587541 Change-Id: I88f01550f07a7859f41b4f0fc843e92b38f5a85b
Diffstat (limited to 'java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java')
-rw-r--r--java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java b/java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java
index 82a85235b..db7421515 100644
--- a/java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java
+++ b/java/com/android/dialer/calllog/datasources/contacts/ContactsDataSource.java
@@ -39,7 +39,7 @@ public final class ContactsDataSource implements CallLogDataSource {
public boolean isDirty(Context appContext) {
Assert.isWorkerThread();
- // TODO: Implementation.
+ // TODO(zachh): Implementation.
return false;
}
@@ -49,7 +49,7 @@ public final class ContactsDataSource implements CallLogDataSource {
Context appContext,
CallLogMutations mutations) {
Assert.isWorkerThread();
- // TODO: Implementation.
+ // TODO(zachh): Implementation.
for (ContentValues contentValues : mutations.getInserts().values()) {
contentValues.put(AnnotatedCallLog.CONTACT_NAME, "Placeholder name");
}
@@ -57,12 +57,12 @@ public final class ContactsDataSource implements CallLogDataSource {
@Override
public void onSuccessfulFill(Context appContext) {
- // TODO: Implementation.
+ // TODO(zachh): Implementation.
}
@Override
public ContentValues coalesce(List<ContentValues> individualRowsSortedByTimestampDesc) {
- // TODO: Implementation.
+ // TODO(zachh): Implementation.
return new RowCombiner(individualRowsSortedByTimestampDesc)
.useSingleValueString(AnnotatedCallLog.CONTACT_NAME)
.combine();
@@ -72,6 +72,6 @@ public final class ContactsDataSource implements CallLogDataSource {
@Override
public void registerContentObservers(
Context appContext, ContentObserverCallbacks contentObserverCallbacks) {
- // TODO: Guard against missing permissions during callback registration.
+ // TODO(zachh): Guard against missing permissions during callback registration.
}
}