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

Unified Diff: content/common/platform_notification_messages.h

Issue 2300093002: Make //content responsible for generating notification Ids (Closed)
Patch Set: comments Created 4 years, 3 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: content/common/platform_notification_messages.h
diff --git a/content/common/platform_notification_messages.h b/content/common/platform_notification_messages.h
index 525b2b34e324bfb00fe7dfe311d11057920b14e9..02bb9f3af973da03cc726ee9bb139ced31e5efd8 100644
--- a/content/common/platform_notification_messages.h
+++ b/content/common/platform_notification_messages.h
@@ -19,10 +19,10 @@
#ifndef CONTENT_COMMON_PLATFORM_NOTIFICATION_MESSAGES_H_
#define CONTENT_COMMON_PLATFORM_NOTIFICATION_MESSAGES_H_
-// Defines the pair of [persistent notification id] => [notification data] used
-// when getting the notifications for a given Service Worker registration.
+// Defines the pair of [notification id] => [notification data] used when
+// getting the notifications for a given Service Worker registration.
using PersistentNotificationInfo =
- std::pair<int64_t, content::PlatformNotificationData>;
+ std::pair<std::string, content::PlatformNotificationData>;
#endif // CONTENT_COMMON_PLATFORM_NOTIFICATION_MESSAGES_H_
@@ -100,7 +100,7 @@ IPC_MESSAGE_CONTROL2(PlatformNotificationMsg_DidGetNotifications,
IPC_MESSAGE_CONTROL4(
PlatformNotificationHostMsg_Show,
- int /* notification_id */,
+ int /* non_persistent_notification_id */,
GURL /* origin */,
content::PlatformNotificationData /* notification_data */,
content::NotificationResources /* notification_resources */)
@@ -119,9 +119,12 @@ IPC_MESSAGE_CONTROL4(PlatformNotificationHostMsg_GetNotifications,
GURL /* origin */,
std::string /* filter_tag */)
-IPC_MESSAGE_CONTROL1(PlatformNotificationHostMsg_Close,
- int /* notification_id */)
+IPC_MESSAGE_CONTROL3(PlatformNotificationHostMsg_Close,
+ GURL /* origin */,
+ std::string /* tag */,
+ int /* non_persistent_notification_id */)
-IPC_MESSAGE_CONTROL2(PlatformNotificationHostMsg_ClosePersistent,
+IPC_MESSAGE_CONTROL3(PlatformNotificationHostMsg_ClosePersistent,
GURL /* origin */,
- int64_t /* persistent_notification_id */)
+ std::string /* tag */,
+ std::string /* notification_id */)
« no previous file with comments | « content/child/notifications/notification_manager.cc ('k') | content/common/service_worker/service_worker_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698