Index: chrome/browser/sync/protocol/sync.proto |
diff --git a/chrome/browser/sync/protocol/sync.proto b/chrome/browser/sync/protocol/sync.proto |
index e60d209d5deec19d0102fe669fdc5216e3bc2b06..e065ab83139fe0709c3a191728bfddb39e60ec4d 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; |
+ |
// 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 |