| Index: content/public/common/platform_notification_data.h
|
| diff --git a/content/public/common/platform_notification_data.h b/content/public/common/platform_notification_data.h
|
| index 12f4eee9797daa856d5ec8fef4835c6f16e66ee0..1ca0c7e766be3fcd34e65224f59f73875478c6ec 100644
|
| --- a/content/public/common/platform_notification_data.h
|
| +++ b/content/public/common/platform_notification_data.h
|
| @@ -9,6 +9,7 @@
|
| #include <vector>
|
|
|
| #include "base/strings/string16.h"
|
| +#include "base/time/time.h"
|
| #include "content/common/content_export.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -68,6 +69,9 @@ struct CONTENT_EXPORT PlatformNotificationData {
|
| // Vibration API. https://www.w3.org/TR/vibration/
|
| std::vector<int> vibration_pattern;
|
|
|
| + // The time at which the event the notification represents took place.
|
| + base::Time timestamp;
|
| +
|
| // Whether default notification indicators (sound, vibration, light) should
|
| // be suppressed.
|
| bool silent = false;
|
|
|