Index: chrome/browser/sync/protocol/sync.proto |
diff --git a/chrome/browser/sync/protocol/sync.proto b/chrome/browser/sync/protocol/sync.proto |
index 6af021bbd0d71a383432ca751fa06fc279b66ac5..e2e9288781c0776ba63240a20716c5e3656c614b 100644 |
--- a/chrome/browser/sync/protocol/sync.proto |
+++ b/chrome/browser/sync/protocol/sync.proto |
@@ -14,6 +14,8 @@ option retain_unknown_fields = true; |
package sync_pb; |
+import "encryption.proto"; |
+ |
// Used for inspecting how long we spent performing operations in different |
// backends. All times must be in millis. |
message ProfilingData { |
@@ -26,6 +28,8 @@ message ProfilingData { |
} |
message EntitySpecifics { |
+ optional EncryptedData encrypted = 1; |
tim (not reviewing)
2011/02/15 19:58:04
Add a comment here describing how this field works
Nicolas Zea
2011/02/15 23:30:51
Done.
|
+ |
// To add new datatype-specific fields to the protocol, extend |
// EntitySpecifics. First, pick a non-colliding tag number by |
// picking a revision number of one of your past commits |