Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1465)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java

Issue 942103003: Handle notification preferences intent from gear icon. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass tag. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java
index b5aa541e6484a8219fb7365bcae380a7f712e143..4243ff3277b3e05a1089a86fa1604cfda407138b 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/notifications/NotificationConstants.java
@@ -15,6 +15,7 @@
"org.chromium.chrome.browser.notifications.CLOSE_NOTIFICATION";
public static final String EXTRA_NOTIFICATION_ID = "notification_id";
+ public static final String EXTRA_NOTIFICATION_TAG = "notification_tag";
// TODO(peter): Remove these extras once Notifications are powered by a database on the
// native side, that contains all the additional information.
@@ -30,4 +31,9 @@
* Unique identifier for the "Signed in to Chrome" notification.
*/
public static final int NOTIFICATION_ID_SIGNED_IN = 2;
+
+ /**
+ * Separator used to concatenate multiple pieces of data into a notification tag.
Peter Beverloo 2015/02/24 17:48:02 Please clarify in this comment that the separator
Michael van Ouwerkerk 2015/02/25 18:12:44 Done.
+ */
+ public static final String NOTIFICATION_TAG_SEPARATOR = ";";
}

Powered by Google App Engine
This is Rietveld 408576698