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

Unified Diff: components/arc/common/app_discovery_result.mojom

Issue 2929273002: Add the Play Store app search to the launcher. (Closed)
Patch Set: Return a list of app search results at once. Created 3 years, 6 months 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
« components/arc/common/app.mojom ('K') | « components/arc/common/app.mojom ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/app_discovery_result.mojom
diff --git a/components/arc/common/app_discovery_result.mojom b/components/arc/common/app_discovery_result.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..3ad94b246c824c532370907183086dd1dcd922e3
--- /dev/null
+++ b/components/arc/common/app_discovery_result.mojom
@@ -0,0 +1,16 @@
+// Copyright 201y 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.
+
+module arc.mojom;
+
+// Represents a Play Store app discovery result.
+struct AppDiscoveryResult {
Luis Héctor Chávez 2017/06/15 15:37:25 It's probably better to have this be in app.mojom.
Jiaquan He 2017/06/15 19:23:31 Done.
+ string launch_intent_uri;
+ string install_intent_uri;
+ string label;
+ bool is_instant_app;
+ bool is_recent;
+ string publisher_name;
+ array<uint8> icon_png_data;
+};
« components/arc/common/app.mojom ('K') | « components/arc/common/app.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698