summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Burtsev <kirill.burtsev@qt.io>2019-01-31 19:51:50 +0100
committerKirill Burtsev <kirill.burtsev@qt.io>2019-02-01 14:09:56 +0000
commit8d510183ca27142801b56bb50d63cbb2a92d4337 (patch)
tree7a0f4ffbb96fa0d323e483811105e95d67f0fdb9
parent5a76a0a325a041dab3c93943c99835d3e9297620 (diff)
downloadqtwebengine-chromium-5.13.0-alpha1.tar.gz
Use chromium setting for persistent web notification idsv5.13.0-alpha1
Change-Id: I38e65848da7c92adc6be87175ca9da3fe496a3dd Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
-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_