OLD | NEW |
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_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ |
6 #define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | 6 #define CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "content/common/content_export.h" | |
11 #include "content/public/common/platform_notification_data.h" | 10 #include "content/public/common/platform_notification_data.h" |
12 #include "url/gurl.h" | 11 #include "url/gurl.h" |
13 | 12 |
14 namespace content { | 13 namespace content { |
15 | 14 |
16 // Stores information about a Web Notification as available in the notification | 15 // Stores information about a Web Notification as available in the notification |
17 // database. Beyond the notification's own data, its id and attribution need | 16 // database. Beyond the notification's own data, its id and attribution need |
18 // to be available for users of the database as well. | 17 // to be available for users of the database as well. |
19 struct CONTENT_EXPORT NotificationDatabaseData { | 18 struct 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. | 19 // Id of the notification as allocated by the NotificationDatabase. |
31 int64_t notification_id; | 20 int64_t notification_id = 0; |
32 | 21 |
33 // Origin of the website this notification is associated with. | 22 // Origin of the website this notification is associated with. |
34 GURL origin; | 23 GURL origin; |
35 | 24 |
36 // Id of the Service Worker registration this notification is associated with. | 25 // Id of the Service Worker registration this notification is associated with. |
37 int64_t service_worker_registration_id; | 26 int64_t service_worker_registration_id = 0; |
38 | 27 |
39 // Platform data of the notification that's being stored. | 28 // Platform data of the notification that's being stored. |
40 PlatformNotificationData notification_data; | 29 PlatformNotificationData notification_data; |
41 }; | 30 }; |
42 | 31 |
43 } // namespace content | 32 } // namespace content |
44 | 33 |
45 #endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_DATA_H_ | 34 #endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_ |
OLD | NEW |