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

Side by Side Diff: content/common/platform_notification_messages.h

Issue 1656243002: Implementation of renotify flag for Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added TypeError for incorrect options and unit test Created 4 years, 10 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Messages for platform-native notifications using the Web Notification API. 5 // Messages for platform-native notifications using the Web Notification API.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 IPC_STRUCT_TRAITS_BEGIN(content::PlatformNotificationData) 44 IPC_STRUCT_TRAITS_BEGIN(content::PlatformNotificationData)
45 IPC_STRUCT_TRAITS_MEMBER(title) 45 IPC_STRUCT_TRAITS_MEMBER(title)
46 IPC_STRUCT_TRAITS_MEMBER(direction) 46 IPC_STRUCT_TRAITS_MEMBER(direction)
47 IPC_STRUCT_TRAITS_MEMBER(lang) 47 IPC_STRUCT_TRAITS_MEMBER(lang)
48 IPC_STRUCT_TRAITS_MEMBER(body) 48 IPC_STRUCT_TRAITS_MEMBER(body)
49 IPC_STRUCT_TRAITS_MEMBER(tag) 49 IPC_STRUCT_TRAITS_MEMBER(tag)
50 IPC_STRUCT_TRAITS_MEMBER(icon) 50 IPC_STRUCT_TRAITS_MEMBER(icon)
51 IPC_STRUCT_TRAITS_MEMBER(vibration_pattern) 51 IPC_STRUCT_TRAITS_MEMBER(vibration_pattern)
52 IPC_STRUCT_TRAITS_MEMBER(timestamp) 52 IPC_STRUCT_TRAITS_MEMBER(timestamp)
53 IPC_STRUCT_TRAITS_MEMBER(silent) 53 IPC_STRUCT_TRAITS_MEMBER(silent)
54 IPC_STRUCT_TRAITS_MEMBER(renotify)
54 IPC_STRUCT_TRAITS_MEMBER(require_interaction) 55 IPC_STRUCT_TRAITS_MEMBER(require_interaction)
55 IPC_STRUCT_TRAITS_MEMBER(data) 56 IPC_STRUCT_TRAITS_MEMBER(data)
56 IPC_STRUCT_TRAITS_MEMBER(actions) 57 IPC_STRUCT_TRAITS_MEMBER(actions)
57 IPC_STRUCT_TRAITS_END() 58 IPC_STRUCT_TRAITS_END()
58 59
59 IPC_STRUCT_TRAITS_BEGIN(content::NotificationResources) 60 IPC_STRUCT_TRAITS_BEGIN(content::NotificationResources)
60 IPC_STRUCT_TRAITS_MEMBER(notification_icon) 61 IPC_STRUCT_TRAITS_MEMBER(notification_icon)
61 IPC_STRUCT_TRAITS_END() 62 IPC_STRUCT_TRAITS_END()
62 63
63 // Messages sent from the browser to the renderer. 64 // Messages sent from the browser to the renderer.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 IPC_MESSAGE_CONTROL1(PlatformNotificationHostMsg_Close, 115 IPC_MESSAGE_CONTROL1(PlatformNotificationHostMsg_Close,
115 int /* notification_id */) 116 int /* notification_id */)
116 117
117 IPC_MESSAGE_CONTROL2(PlatformNotificationHostMsg_ClosePersistent, 118 IPC_MESSAGE_CONTROL2(PlatformNotificationHostMsg_ClosePersistent,
118 GURL /* origin */, 119 GURL /* origin */,
119 int64_t /* persistent_notification_id */) 120 int64_t /* persistent_notification_id */)
120 121
121 IPC_SYNC_MESSAGE_CONTROL1_1(PlatformNotificationHostMsg_CheckPermission, 122 IPC_SYNC_MESSAGE_CONTROL1_1(PlatformNotificationHostMsg_CheckPermission,
122 GURL /* origin */, 123 GURL /* origin */,
123 blink::WebNotificationPermission /* result */) 124 blink::WebNotificationPermission /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698