Chromium Code Reviews| Index: sync/protocol/sync.proto |
| diff --git a/sync/protocol/sync.proto b/sync/protocol/sync.proto |
| index ecaceefbf6afb5d1956ea51455d24ee9b49edf94..e0e49b3bafd29723261599bebf04014ec42f1214 100644 |
| --- a/sync/protocol/sync.proto |
| +++ b/sync/protocol/sync.proto |
| @@ -893,3 +893,11 @@ message ClientToServerResponse { |
| optional ChipBag new_bag_of_chips = 14; |
| }; |
| +// Identifies an attachment. |
| +// |
| +// Note, message's definition is in flux and may change. Don't rely on it. |
| +message SyncAttachmentId { |
|
Nicolas Zea
2013/12/30 19:10:31
Should we have this in its own proto file? This fi
maniscalco
2013/12/30 22:17:19
Good call. Done. I moved it to attachments.proto
|
| + // Uniquely identifies the attachment. Two attachments with the same unique_id |
| + // are considered equivalent. |
| + optional string unique_id = 1; |
| +}; |