OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/arc/common/arc_message_types.h" |
| 6 #include "ipc/ipc_message_macros.h" |
| 7 #include "ipc/ipc_message_utils.h" |
| 8 |
| 9 IPC_STRUCT_TRAITS_BEGIN(arc::AppInfo) |
| 10 IPC_STRUCT_TRAITS_MEMBER(name) |
| 11 IPC_STRUCT_TRAITS_MEMBER(package) |
| 12 IPC_STRUCT_TRAITS_MEMBER(activity) |
| 13 IPC_STRUCT_TRAITS_END() |
OLD | NEW |