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

Side by Side Diff: content/public/browser/notification_database_data.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 unified diff | Download patch
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/notification_database_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ 6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string>
9 10
11 #include "content/common/content_export.h"
10 #include "content/public/common/platform_notification_data.h" 12 #include "content/public/common/platform_notification_data.h"
11 #include "url/gurl.h" 13 #include "url/gurl.h"
12 14
13 namespace content { 15 namespace content {
14 16
15 // Stores information about a Web Notification as available in the notification 17 // Stores information about a Web Notification as available in the notification
16 // database. Beyond the notification's own data, its id and attribution need 18 // database. Beyond the notification's own data, its id and attribution need
17 // to be available for users of the database as well. 19 // to be available for users of the database as well.
18 struct NotificationDatabaseData { 20 struct CONTENT_EXPORT NotificationDatabaseData {
19 // Id of the notification as allocated by the NotificationDatabase. 21 NotificationDatabaseData();
20 int64_t notification_id = 0; 22 NotificationDatabaseData(const NotificationDatabaseData& other);
23 ~NotificationDatabaseData();
24
25 NotificationDatabaseData& operator=(const NotificationDatabaseData& other);
26
27 // Id of the notification as assigned by the NotificationIdGenerator.
28 std::string notification_id;
21 29
22 // Origin of the website this notification is associated with. 30 // Origin of the website this notification is associated with.
23 GURL origin; 31 GURL origin;
24 32
25 // Id of the Service Worker registration this notification is associated with. 33 // Id of the Service Worker registration this notification is associated with.
26 int64_t service_worker_registration_id = 0; 34 int64_t service_worker_registration_id = 0;
27 35
28 // Platform data of the notification that's being stored. 36 // Platform data of the notification that's being stored.
29 PlatformNotificationData notification_data; 37 PlatformNotificationData notification_data;
30 }; 38 };
31 39
32 } // namespace content 40 } // namespace content
33 41
34 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ 42 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
OLDNEW
« no previous file with comments | « content/public/browser/BUILD.gn ('k') | content/public/browser/notification_database_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698