summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chromium/chrome/common/pref_names.cc3
-rw-r--r--chromium/chrome/common/pref_names.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chromium/chrome/common/pref_names.cc b/chromium/chrome/common/pref_names.cc
index 0a21e16b112..715b7104ecc 100644
--- a/chromium/chrome/common/pref_names.cc
+++ b/chromium/chrome/common/pref_names.cc
@@ -12,4 +12,7 @@ const char kAcceptLanguages[] = "intl.accept_languages";
const char kShowInternalAccessibilityTree[] =
"accessibility.show_internal_accessibility_tree";
+// Integer that holds the value of the next persistent notification ID to be
+// used.
+const char kNotificationNextPersistentId[] = "persistent_notifications.next_id";
} // namespace prefs
diff --git a/chromium/chrome/common/pref_names.h b/chromium/chrome/common/pref_names.h
index 2934ed5353b..936c23f0868 100644
--- a/chromium/chrome/common/pref_names.h
+++ b/chromium/chrome/common/pref_names.h
@@ -10,6 +10,7 @@
namespace prefs {
extern const char kAcceptLanguages[];
extern const char kShowInternalAccessibilityTree[];
+extern const char kNotificationNextPersistentId[];
} // namespace prefs
#endif // CHROME_COMMON_PREF_NAMES_H_