| Index: sync/protocol/app_specifics.proto
|
| diff --git a/sync/protocol/app_specifics.proto b/sync/protocol/app_specifics.proto
|
| index a43ea2fd01f9cd9b61956340e6b88ff4d95feaf3..fe07d2d5ef5b80c1505cfb0900061f30d940b50f 100644
|
| --- a/sync/protocol/app_specifics.proto
|
| +++ b/sync/protocol/app_specifics.proto
|
| @@ -38,6 +38,15 @@ message AppNotificationSettings {
|
| optional string oauth_client_id = 3;
|
| }
|
|
|
| +// Information about a linked app icon.
|
| +message LinkedAppIconInfo {
|
| + // The URL of the app icon.
|
| + optional string url = 1;
|
| +
|
| + // The size of the app icon in DIPs.
|
| + optional uint32 size = 2;
|
| +}
|
| +
|
| // Properties of app sync objects.
|
| //
|
| // For now, an app is just an extension. We keep the two data types
|
| @@ -79,4 +88,8 @@ message AppSpecifics {
|
| // This is the color to use when generating bookmark app icons. The string is
|
| // in #rrggbb or #rgb syntax, e.g. #d8d8d8.
|
| optional string bookmark_app_icon_color = 8;
|
| +
|
| + // This is information about linked icons (that is, icons that are downloaded
|
| + // from outside the app's bundle of files.
|
| + repeated LinkedAppIconInfo linked_app_icons = 9;
|
| }
|
|
|