OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | |
6 #define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | |
7 | |
8 #include <stdint.h> | |
9 | |
10 #include "content/common/content_export.h" | |
11 #include "content/public/common/platform_notification_data.h" | |
12 #include "url/gurl.h" | |
13 | |
14 namespace content { | |
15 | |
16 // Stores information about a Web Notification as available in the notification | |
17 // database. Beyond the notification's own data, its id and attribution need | |
18 // to be available for users of the database as well. | |
19 struct CONTENT_EXPORT NotificationDatabaseData { | |
20 NotificationDatabaseData(); | |
21 ~NotificationDatabaseData(); | |
22 | |
23 // Parses the serialized notification database data |input| into this object. | |
24 bool ParseFromString(const std::string& input); | |
25 | |
26 // Serializes the contents of this object to |output|. Returns if the data | |
27 // could be serialized successfully. | |
28 bool SerializeToString(std::string* output) const; | |
29 | |
30 // Id of the notification as allocated by the NotificationDatabase. | |
31 int64_t notification_id; | |
32 | |
33 // Origin of the website this notification is associated with. | |
34 GURL origin; | |
35 | |
36 // Id of the Service Worker registration this notification is associated with. | |
37 int64_t service_worker_registration_id; | |
38 | |
39 // Platform data of the notification that's being stored. | |
40 PlatformNotificationData notification_data; | |
41 }; | |
42 | |
43 } // namespace content | |
44 | |
45 #endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | |
OLD | NEW |