Allow a sync adapter to provide an OPEN action for a group
Bug:4413120
Change-Id: Idf0f969c20a82c8dcfa04b9234ccebf3f659da99
diff --git a/src/com/android/contacts/GroupMetaDataLoader.java b/src/com/android/contacts/GroupMetaDataLoader.java
index 8533bb6..f11217c 100644
--- a/src/com/android/contacts/GroupMetaDataLoader.java
+++ b/src/com/android/contacts/GroupMetaDataLoader.java
@@ -35,6 +35,8 @@
Groups.FAVORITES,
Groups.GROUP_IS_READ_ONLY,
Groups.DELETED,
+ Groups.ACTION,
+ Groups.ACTION_URI,
};
public final static int ACCOUNT_NAME = 0;
@@ -45,6 +47,8 @@
public final static int FAVORITES = 5;
public final static int IS_READ_ONLY = 6;
public final static int DELETED = 7;
+ public final static int ACTION = 8;
+ public final static int ACTION_URI = 9;
public GroupMetaDataLoader(Context context, Uri groupUri) {
super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "