OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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 // Sync protocol for attachments. | |
6 | |
7 syntax = "proto2"; | |
8 | |
9 option optimize_for = LITE_RUNTIME; | |
10 option retain_unknown_fields = true; | |
11 | |
12 package sync_pb; | |
13 | |
14 // Identifies an attachment. | |
15 // | |
16 // Note, message's definition is in flux and may change. Don't rely on it. | |
17 message SyncAttachmentId { | |
18 // Uniquely identifies the attachment. Two attachments with the same unique_id | |
19 // are considered equivalent. | |
20 optional string unique_id = 1; | |
Nicolas Zea
2013/12/30 23:04:22
This message and field should probably be added to
maniscalco
2013/12/30 23:54:22
Done.
| |
21 } | |
OLD | NEW |