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

Side by Side Diff: components/arc/common/arc_message_traits.h

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to catch arc++ notification cl Created 5 years 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 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
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()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698