| Index: chrome/browser/android/webapk/webapk.proto
|
| diff --git a/chrome/browser/android/webapk/webapk.proto b/chrome/browser/android/webapk/webapk.proto
|
| index 05615266b6673f476a9457578ac0f929d1ffcd51..b53e1a3253971c6ae75c0d5b8395c919420b36bc 100644
|
| --- a/chrome/browser/android/webapk/webapk.proto
|
| +++ b/chrome/browser/android/webapk/webapk.proto
|
| @@ -71,6 +71,12 @@ message WebAppManifest {
|
| }
|
|
|
| message Image {
|
| +
|
| + enum Usage {
|
| + PRIMARY_ICON = 1;
|
| + BADGE_ICON = 2;
|
| + }
|
| +
|
| // Image's URL.
|
| optional string src = 1;
|
|
|
| @@ -82,5 +88,8 @@ message Image {
|
| // image and may not match the murmur2 hash field above.
|
| optional bytes image_data = 6;
|
|
|
| - reserved 2 to 4;
|
| + // Specifies Chrome's intended usages for the image.
|
| + repeated Usage usages = 8;
|
| +
|
| + reserved 2, 3, 4, 7;
|
| }
|
|
|