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

Unified Diff: sync/protocol/app_specifics.proto

Issue 1066623008: Sync bookmark app icon urls and sizes, and download icons for new apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated sync value conversions Created 5 years, 8 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
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | sync/protocol/proto_value_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | sync/protocol/proto_value_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698