Add message flags for "replied to" and "forwarded"

* These will be required for EAS logo certification

Change-Id: Iaa8c970878a319fac68b3533889e6774f9cd54f9
This commit is contained in:
Marc Blank 2011-05-09 10:34:57 -07:00
parent ae993bda32
commit 9279fc1b94
1 changed files with 2 additions and 0 deletions

View File

@ -714,6 +714,8 @@ public abstract class EmailContent {
public static final int FLAG_SYNC_ADAPTER_MASK = 255 << FLAG_SYNC_ADAPTER_SHIFT;
/** If set, the outgoing message should *not* include the quoted original message. */
public static final int FLAG_NOT_INCLUDE_QUOTED_TEXT = 1 << 17;
public static final int FLAG_REPLIED_TO = 1 << 18;
public static final int FLAG_FORWARDED = 1 << 19;
public Message() {
mBaseUri = CONTENT_URI;