diff options
author | Jose Lima <joselima@google.com> | 2015-04-23 19:54:58 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-04-23 19:54:59 +0000 |
commit | b3614b7285fd0aa2ea385df42eef2d69d37e8c27 (patch) | |
tree | c7a2b0715ba8119d886d930e0c237cde408abd45 /core/java/android/app | |
parent | 3f3a2a87e63ba53b4907feccc25cd48f8d482c81 (diff) | |
parent | 7e0f2ac42574b524d7b06afaf9221bde5d0af228 (diff) | |
download | frameworks_base-b3614b7285fd0aa2ea385df42eef2d69d37e8c27.zip frameworks_base-b3614b7285fd0aa2ea385df42eef2d69d37e8c27.tar.gz frameworks_base-b3614b7285fd0aa2ea385df42eef2d69d37e8c27.tar.bz2 |
Merge "Add pre-order as a pricing type for ContentInfoExtender"
Diffstat (limited to 'core/java/android/app')
-rw-r--r-- | core/java/android/app/Notification.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index e7f8f6d..2cf23af 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -5648,6 +5648,13 @@ public class Notification implements Parcelable /** * Value to be used with {@link #setPricingInformation} to indicate that the content + * referred by the notification item is available currently as a pre-order, and the price + * value provided is the purchase price for the item. + */ + public static final String CONTENT_PRICING_PREORDER = "android.contentPrice.preorder"; + + /** + * Value to be used with {@link #setPricingInformation} to indicate that the content * referred by the notification item is available as part of a subscription based service, * and the price value provided is the subscription price for the service. */ |