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

Unified Diff: chrome/test/data/notifications/platform_notification_service.html

Issue 2392343002: Plumbing in notification replies: PlatformNotificationService -> SW (Closed)
Patch Set: include base/logging.h for NOTIMPLEMENTED Created 4 years, 2 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/test/data/notifications/platform_notification_service.html
diff --git a/chrome/test/data/notifications/platform_notification_service.html b/chrome/test/data/notifications/platform_notification_service.html
index 60e476342a9ca0bbd51598cc59656f63d55bbf93..88b2ac3e4c5f1cfe8c41ee8be80bf3ac7688ba7d 100644
--- a/chrome/test/data/notifications/platform_notification_service.html
+++ b/chrome/test/data/notifications/platform_notification_service.html
@@ -116,6 +116,17 @@
});
}
+ // Displays a persistent notification with a reply button.
+ function DisplayPersistentNotificationWithReplyButton() {
+ DisplayPersistentNotification('action_button_click', {
+ body: 'Contents',
+ actions: [
+ { action: 'actionId1', title: 'actionTitle1', icon: 'icon.png',
+ type: 'text' }
+ ]
+ });
+ }
+
// Returns the latest received message from the worker. If no message has
// been received, nothing will be done. For successfully registered
// Service Workers this is OK, however, since the "message" event handler

Powered by Google App Engine
This is Rietveld 408576698