Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Unified Diff: components/arc/common/arc_message_types.h

Issue 1475563002: arc-bridge: Implement IPC message for app launcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move spliting arc_bridge_service to another CL Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« components/arc/common/arc_message_traits.h ('K') | « components/arc/common/arc_message_traits.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698