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

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

Issue 1262023003: Serialize Notification.direction == "auto" in the database (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 14 matching lines...) Expand all
25 std::pair<int64_t, content::PlatformNotificationData>; 25 std::pair<int64_t, content::PlatformNotificationData>;
26 26
27 #endif // CONTENT_COMMON_PLATFORM_NOTIFICATION_MESSAGES_H_ 27 #endif // CONTENT_COMMON_PLATFORM_NOTIFICATION_MESSAGES_H_
28 28
29 #define IPC_MESSAGE_START PlatformNotificationMsgStart 29 #define IPC_MESSAGE_START PlatformNotificationMsgStart
30 30
31 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebNotificationPermission, 31 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebNotificationPermission,
32 blink::WebNotificationPermissionLast) 32 blink::WebNotificationPermissionLast)
33 33
34 IPC_ENUM_TRAITS_MAX_VALUE( 34 IPC_ENUM_TRAITS_MAX_VALUE(
35 content::PlatformNotificationData::NotificationDirection, 35 content::PlatformNotificationData::Direction,
36 content::PlatformNotificationData::NotificationDirectionLast) 36 content::PlatformNotificationData::DIRECTION_LAST)
37 37
38 IPC_STRUCT_TRAITS_BEGIN(content::PlatformNotificationData) 38 IPC_STRUCT_TRAITS_BEGIN(content::PlatformNotificationData)
39 IPC_STRUCT_TRAITS_MEMBER(title) 39 IPC_STRUCT_TRAITS_MEMBER(title)
40 IPC_STRUCT_TRAITS_MEMBER(direction) 40 IPC_STRUCT_TRAITS_MEMBER(direction)
41 IPC_STRUCT_TRAITS_MEMBER(lang) 41 IPC_STRUCT_TRAITS_MEMBER(lang)
42 IPC_STRUCT_TRAITS_MEMBER(body) 42 IPC_STRUCT_TRAITS_MEMBER(body)
43 IPC_STRUCT_TRAITS_MEMBER(tag) 43 IPC_STRUCT_TRAITS_MEMBER(tag)
44 IPC_STRUCT_TRAITS_MEMBER(icon) 44 IPC_STRUCT_TRAITS_MEMBER(icon)
45 IPC_STRUCT_TRAITS_MEMBER(vibration_pattern) 45 IPC_STRUCT_TRAITS_MEMBER(vibration_pattern)
46 IPC_STRUCT_TRAITS_MEMBER(silent) 46 IPC_STRUCT_TRAITS_MEMBER(silent)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 IPC_MESSAGE_CONTROL1(PlatformNotificationHostMsg_Close, 99 IPC_MESSAGE_CONTROL1(PlatformNotificationHostMsg_Close,
100 int /* notification_id */) 100 int /* notification_id */)
101 101
102 IPC_MESSAGE_CONTROL2(PlatformNotificationHostMsg_ClosePersistent, 102 IPC_MESSAGE_CONTROL2(PlatformNotificationHostMsg_ClosePersistent,
103 GURL /* origin */, 103 GURL /* origin */,
104 int64_t /* persistent_notification_id */) 104 int64_t /* persistent_notification_id */)
105 105
106 IPC_SYNC_MESSAGE_CONTROL1_1(PlatformNotificationHostMsg_CheckPermission, 106 IPC_SYNC_MESSAGE_CONTROL1_1(PlatformNotificationHostMsg_CheckPermission,
107 GURL /* origin */, 107 GURL /* origin */,
108 blink::WebNotificationPermission /* result */) 108 blink::WebNotificationPermission /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698