Chromium Code Reviews| Index: sync/protocol/attachments.proto |
| diff --git a/sync/protocol/attachments.proto b/sync/protocol/attachments.proto |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..24ea209122d6804ca2affc9e92e526eff36422c0 |
| --- /dev/null |
| +++ b/sync/protocol/attachments.proto |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +// |
| +// Sync protocol for attachments. |
| + |
| +syntax = "proto2"; |
| + |
| +option optimize_for = LITE_RUNTIME; |
| +option retain_unknown_fields = true; |
| + |
| +package sync_pb; |
| + |
| +// Identifies an attachment. |
| +// |
| +// Note, message's definition is in flux and may change. Don't rely on it. |
| +message SyncAttachmentId { |
| + // Uniquely identifies the attachment. Two attachments with the same unique_id |
| + // are considered equivalent. |
| + 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.
|
| +} |