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

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

Issue 1475563002: arc-bridge: Implement IPC message for app launcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renaming and nits Created 5 years 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_traits.h
diff --git a/components/arc/common/arc_message_traits.h b/components/arc/common/arc_message_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..2dadaeb31aca728a31fc867f8921d39d0fe0bc46
--- /dev/null
+++ b/components/arc/common/arc_message_traits.h
@@ -0,0 +1,13 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/arc/common/arc_message_types.h"
+#include "ipc/ipc_message_macros.h"
+#include "ipc/ipc_message_utils.h"
+
+IPC_STRUCT_TRAITS_BEGIN(arc::AppInfo)
+ IPC_STRUCT_TRAITS_MEMBER(name)
+ IPC_STRUCT_TRAITS_MEMBER(package)
+ IPC_STRUCT_TRAITS_MEMBER(activity)
+IPC_STRUCT_TRAITS_END()

Powered by Google App Engine
This is Rietveld 408576698