Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 201y The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module arc.mojom; | |
| 6 | |
| 7 // Represents a Play Store app discovery result. | |
| 8 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.
| |
| 9 string launch_intent_uri; | |
| 10 string install_intent_uri; | |
| 11 string label; | |
| 12 bool is_instant_app; | |
| 13 bool is_recent; | |
| 14 string publisher_name; | |
| 15 array<uint8> icon_png_data; | |
| 16 }; | |
| OLD | NEW |