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..1fcd51532c91702260da54348e483980c807c6b4 100644 |
--- a/components/arc/common/arc_message_types.h |
+++ b/components/arc/common/arc_message_types.h |
@@ -5,7 +5,10 @@ |
#ifndef COMPONENTS_ARC_COMMON_MESSAGE_TYPES |
#define COMPONENTS_ARC_COMMON_MESSAGE_TYPES |
+#include <string> |
+ |
namespace arc { |
+ |
// Describing the boot phase of the ARC instance, as defined by AOSP in |
// com.android.server.SystemService |
enum class InstanceBootPhase { |
@@ -35,6 +38,14 @@ enum class InstanceBootPhase { |
// Last enum entry for IPC_ENUM_TRAITS |
LAST = BOOT_COMPLETED |
}; |
-} |
+ |
+// Describe ARC app. |
hidehiko
2015/12/01 08:18:25
nit: Describes, or Describing (for consistency wit
khmel1
2015/12/01 09:49:32
Done.
|
+struct AppInfo { |
+ std::string name; |
+ std::string package; |
+ std::string activity; |
+}; |
+ |
+} // namespace arc |
#endif // COMPONENTS_ARC_COMMON_MESSAGE_TYPES |