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