| Index: chromeos/arc/bridge/common/arc_instance_messages.h
|
| diff --git a/chromeos/arc/bridge/common/arc_instance_messages.h b/chromeos/arc/bridge/common/arc_instance_messages.h
|
| index 607718d12842306f1cdc1f27b0b3cd95471719ce..29887102f885c4342233621c51807054cc9b6d7d 100644
|
| --- a/chromeos/arc/bridge/common/arc_instance_messages.h
|
| +++ b/chromeos/arc/bridge/common/arc_instance_messages.h
|
| @@ -22,3 +22,17 @@ IPC_MESSAGE_CONTROL3(ArcInstanceMsg_RegisterInputDevice,
|
| std::string, /* name */
|
| std::string, /* device_type */
|
| base::FileDescriptor /* fd */)
|
| +
|
| +// Request to app launcher to refresh a list of available apps.
|
| +IPC_MESSAGE_CONTROL0(ArcInstanceMsg_RefreshApps)
|
| +
|
| +// Request to app launcher to start an activity.
|
| +IPC_MESSAGE_CONTROL2(ArcInstanceMsg_LaunchApp,
|
| + std::string, /* package */
|
| + std::string /* activity */)
|
| +
|
| +// Request to app launcher to send an app icon of a required scale factor.
|
| +IPC_MESSAGE_CONTROL3(ArcInstanceMsg_RequestIcon,
|
| + std::string, /* package */
|
| + std::string, /* activity */
|
| + int /* scale factor */)
|
|
|