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