| Index: components/arc/common/arc_message_types.h
|
| diff --git a/components/arc/common/arc_message_types.h b/components/arc/common/arc_message_types.h
|
| index e07193d628dff6f8a5448226c568185de44be506..10a707cc3ee8d778b4b57e3688b4f42eb141d466 100644
|
| --- a/components/arc/common/arc_message_types.h
|
| +++ b/components/arc/common/arc_message_types.h
|
| @@ -6,6 +6,7 @@
|
| #define COMPONENTS_ARC_COMMON_MESSAGE_TYPES
|
|
|
| namespace arc {
|
| +
|
| // Describing the boot phase of the ARC instance, as defined by AOSP in
|
| // com.android.server.SystemService
|
| enum class InstanceBootPhase {
|
| @@ -35,6 +36,14 @@ enum class InstanceBootPhase {
|
| // Last enum entry for IPC_ENUM_TRAITS
|
| LAST = BOOT_COMPLETED
|
| };
|
| -}
|
| +
|
| +// Describe ARC app.
|
| +struct AppInfo {
|
| + std::string name;
|
| + std::string package;
|
| + std::string activity;
|
| +};
|
| +
|
| +} // namespace arc
|
|
|
| #endif // COMPONENTS_ARC_COMMON_MESSAGE_TYPES
|
|
|