Fix the display of social updates in the fast track, and the hard coded Facebook sources.

Change-Id: Ifbb429ad5714bdd78a5571c4adc575b74f928649
diff --git a/src/com/android/contacts/model/HardCodedSources.java b/src/com/android/contacts/model/HardCodedSources.java
index 3d9df8f..f844c96 100644
--- a/src/com/android/contacts/model/HardCodedSources.java
+++ b/src/com/android/contacts/model/HardCodedSources.java
@@ -630,10 +630,11 @@
      * Hard-coded instance of {@link ContactsSource} for Facebook.
      */
     static void buildFacebook(Context context, ContactsSource list) {
+        // Rely on the fallback source for now, it has a generic set of sources
+        buildFallback(context, list);
+
         list.accountType = ACCOUNT_TYPE_FACEBOOK;
         list.readOnly = true;
-
-        // TODO: fill in read-only values that should be visible?
     }
 
     /**
diff --git a/src/com/android/contacts/ui/FastTrackWindow.java b/src/com/android/contacts/ui/FastTrackWindow.java
index de43c10..80e2b39 100644
--- a/src/com/android/contacts/ui/FastTrackWindow.java
+++ b/src/com/android/contacts/ui/FastTrackWindow.java
@@ -1199,7 +1199,7 @@
         };
 
         final int PUBLISHED = 0;
-        final int TITLE = 0;
+        final int TITLE = 1;
     }
 
     private interface DataQuery {