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 // Messages sent from the ARC instance to the host. | 5 // Messages sent from the ARC instance to the host. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
| 8 #include <string> |
| 9 #include <vector> |
| 10 |
8 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
9 | 12 |
| 13 #include "components/arc/common/arc_message_traits.h" |
10 #include "components/arc/common/arc_message_types.h" | 14 #include "components/arc/common/arc_message_types.h" |
11 | 15 |
12 #define IPC_MESSAGE_START ArcInstanceHostMsgStart | 16 #define IPC_MESSAGE_START ArcInstanceHostMsgStart |
13 | 17 |
14 IPC_ENUM_TRAITS_MAX_VALUE(arc::InstanceBootPhase, arc::InstanceBootPhase::LAST) | 18 IPC_ENUM_TRAITS_MAX_VALUE(arc::InstanceBootPhase, arc::InstanceBootPhase::LAST) |
15 | 19 |
16 IPC_MESSAGE_CONTROL1(ArcInstanceHostMsg_InstanceBootPhase, | 20 IPC_MESSAGE_CONTROL1(ArcInstanceHostMsg_InstanceBootPhase, |
17 arc::InstanceBootPhase) | 21 arc::InstanceBootPhase) |
| 22 |
| 23 // Sends a list of available ARC apps to Chrome. |labels|, |packages| and |
| 24 // |activities| must have the same size and contain non-empty strings. This |
| 25 // message is sent in response to ArcInstanceMsg_RefreshApps message from |
| 26 // Chrome to ARC and when ARC receives boot completed notification. |
| 27 IPC_MESSAGE_CONTROL1(ArcInstanceHostMsg_AppsRefreshed, |
| 28 std::vector<arc::AppInfo> /* apps */) |
| 29 |
| 30 // Sends an icon of required |scale_factor| for specific ARC app. The app is |
| 31 // defined by |package| and |activity|. The icon content cannot be empty and |
| 32 // must match to |scale_factor| assuming 48x48 for SCALE_FACTOR_100P. |
| 33 // |scale_factor| is an enum defined at ui/base/layout.h. This message is sent |
| 34 // in response to ArcInstanceMsg_RequestIcon from Chrome to ARC. |
| 35 IPC_MESSAGE_CONTROL4(ArcInstanceHostMsg_AppIcon, |
| 36 std::string, /* package */ |
| 37 std::string, /* activity */ |
| 38 int, /* scale_factor */ |
| 39 std::vector<uint8_t> /* icon_png_data */) |
OLD | NEW |