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

Unified Diff: third_party/WebKit/Source/modules/notifications/Notification.cpp

Issue 1656243002: Implementation of renotify flag for Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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: third_party/WebKit/Source/modules/notifications/Notification.cpp
diff --git a/third_party/WebKit/Source/modules/notifications/Notification.cpp b/third_party/WebKit/Source/modules/notifications/Notification.cpp
index d24f88e34645ddb708bfdf26bac7fab581d78619..f8e2f52555705570b67c6f74fb6045965ac4e918 100644
--- a/third_party/WebKit/Source/modules/notifications/Notification.cpp
+++ b/third_party/WebKit/Source/modules/notifications/Notification.cpp
@@ -258,6 +258,11 @@ DOMTimeStamp Notification::timestamp() const
return m_data.timestamp;
}
+bool Notification::renotify() const
+{
+ return m_data.renotify;
+}
+
bool Notification::silent() const
{
return m_data.silent;

Powered by Google App Engine
This is Rietveld 408576698