| 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 #include "ipc/ipc_message_macros.h" | 5 #include "ipc/ipc_message_macros.h" |
| 6 | 6 |
| 7 // Using relative paths since this file is shared between chromium and android. | 7 // Using relative paths since this file is shared between chromium and android. |
| 8 #include "arc_message_types.h" | 8 #include "arc_message_types.h" |
| 9 #include "arc_notification_types.h" | 9 #include "arc_notification_types.h" |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 IPC_STRUCT_TRAITS_MEMBER(icon_data) | 32 IPC_STRUCT_TRAITS_MEMBER(icon_data) |
| 33 IPC_STRUCT_TRAITS_MEMBER(priority) | 33 IPC_STRUCT_TRAITS_MEMBER(priority) |
| 34 IPC_STRUCT_TRAITS_MEMBER(time) | 34 IPC_STRUCT_TRAITS_MEMBER(time) |
| 35 IPC_STRUCT_TRAITS_MEMBER(progress_current) | 35 IPC_STRUCT_TRAITS_MEMBER(progress_current) |
| 36 IPC_STRUCT_TRAITS_MEMBER(progress_max) | 36 IPC_STRUCT_TRAITS_MEMBER(progress_max) |
| 37 IPC_STRUCT_TRAITS_END() | 37 IPC_STRUCT_TRAITS_END() |
| 38 | 38 |
| 39 // Enum for notification event types. | 39 // Enum for notification event types. |
| 40 IPC_ENUM_TRAITS_MAX_VALUE(arc::ArcNotificationEvent, | 40 IPC_ENUM_TRAITS_MAX_VALUE(arc::ArcNotificationEvent, |
| 41 arc::ArcNotificationEvent::LAST) | 41 arc::ArcNotificationEvent::LAST) |
| 42 |
| 43 IPC_ENUM_TRAITS_MAX_VALUE(arc::ClipboardDataType, |
| 44 arc::ClipboardDataType::LAST) |
| 45 |
| 46 IPC_STRUCT_TRAITS_BEGIN(arc::ClipboardData) |
| 47 IPC_STRUCT_TRAITS_MEMBER(type) |
| 48 IPC_STRUCT_TRAITS_MEMBER(text) |
| 49 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |