summaryrefslogtreecommitdiff
path: root/chromium/components/arc/common
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-05-03 17:20:32 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-05-05 09:28:09 +0000
commitbb09965444b5bb20b096a291445170876225268d (patch)
treeb5f6596f7e6e941b1d7d72f0ce5181500c261529 /chromium/components/arc/common
parent7324afb043a0b1e623d8e8eb906cdc53bdeb4685 (diff)
downloadqtwebengine-chromium-bb09965444b5bb20b096a291445170876225268d.tar.gz
BASELINE: Update Chromium to 58.0.3029.98
Change-Id: Ib913750d687f29e036959c62a0cabf2412a8faa7 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/components/arc/common')
-rw-r--r--chromium/components/arc/common/notifications.mojom12
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/components/arc/common/notifications.mojom b/chromium/components/arc/common/notifications.mojom
index 563ee775d83..50621f101b0 100644
--- a/chromium/components/arc/common/notifications.mojom
+++ b/chromium/components/arc/common/notifications.mojom
@@ -45,6 +45,15 @@ enum ArcNotificationExpandState {
EXPANDED = 2,
};
+// These values represent what shows in an ARC custom notification.
+[Extensible, MinVersion=11]
+enum ArcNotificationShownContents {
+ // The normal notification contents are shown.
+ CONTENTS_SHOWN = 0,
+ // The notification settings view is shown.
+ SETTINGS_SHOWN = 1,
+};
+
struct ArcNotificationData {
// Identifier of notification
string key;
@@ -98,6 +107,9 @@ struct ArcNotificationData {
// Flag if the notification is expandable
[MinVersion=10]
ArcNotificationExpandState expand_state;
+ // Flag for what shows in a notification.
+ [MinVersion=11]
+ ArcNotificationShownContents shown_contents;
};
[MinVersion=2]