Chromium Code Reviews| 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; |
| +}; |