Add GAL support to Dialer

Use new methods implemented for GAL support in Dialer.

Bug:
Change-Id: I4061ca2f84dba383389046004a2af02539ea5fd9
diff --git a/src/com/android/contacts/activities/ContactSelectionActivity.java b/src/com/android/contacts/activities/ContactSelectionActivity.java
index 915c6e1..1eb610a 100644
--- a/src/com/android/contacts/activities/ContactSelectionActivity.java
+++ b/src/com/android/contacts/activities/ContactSelectionActivity.java
@@ -500,6 +500,11 @@
         }
 
         @Override
+        public void onCallNumberDirectly(String phoneNumber) {
+            Log.w(TAG, "Unsupported call.");
+        }
+
+        @Override
         public void onShortcutIntentCreated(Intent intent) {
             returnPickerResult(intent);
         }
diff --git a/src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java b/src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java
index bc16a0b..6c310a6 100644
--- a/src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java
+++ b/src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java
@@ -106,6 +106,6 @@
             label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
         }
         view.setLabel(label);
-        view.showData(cursor, PHONE_NUMBER_COLUMN_INDEX);
+        view.showPhoneNumber(cursor, PHONE_NUMBER_COLUMN_INDEX);
     }
 }