New assets

Change-Id: Ic65a3921db6d7ec18a0aa1d79bceeb26b8293158
diff --git a/src/com/android/contacts/ContactsUtils.java b/src/com/android/contacts/ContactsUtils.java
index 4dd9036..ee79dbb 100644
--- a/src/com/android/contacts/ContactsUtils.java
+++ b/src/com/android/contacts/ContactsUtils.java
@@ -293,7 +293,7 @@
                 return new ImActions(
                         new Intent(Intent.ACTION_SENDTO, Uri.parse("xmpp:" + data + "?message")),
                         new Intent(Intent.ACTION_SENDTO, Uri.parse("xmpp:" + data + "?call")),
-                        android.R.drawable.sym_action_chat,
+                        R.drawable.sym_action_talk_holo_light,
                         R.drawable.sym_action_videochat
                         );
             } else if ((chatCapability & Im.CAPABILITY_HAS_VOICE) != 0) {
@@ -301,14 +301,14 @@
                 return new ImActions(
                         new Intent(Intent.ACTION_SENDTO, Uri.parse("xmpp:" + data + "?message")),
                         new Intent(Intent.ACTION_SENDTO, Uri.parse("xmpp:" + data + "?call")),
-                        android.R.drawable.sym_action_chat,
+                        R.drawable.sym_action_talk_holo_light,
                         R.drawable.sym_action_audiochat
                         );
             } else {
                 return new ImActions(
                         new Intent(Intent.ACTION_SENDTO, Uri.parse("xmpp:" + data + "?message")),
                         null,
-                        android.R.drawable.sym_action_chat,
+                        R.drawable.sym_action_talk_holo_light,
                         -1
                         );
             }
@@ -328,7 +328,7 @@
                 return new ImActions(
                         new Intent(Intent.ACTION_SENDTO, imUri),
                         null,
-                        android.R.drawable.sym_action_chat,
+                        R.drawable.sym_action_talk_holo_light,
                         -1
                         );
             } else {