summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync
diff options
context:
space:
mode:
authorzork@google.com <zork@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-03 22:42:37 +0000
committerzork@google.com <zork@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-02-03 22:42:37 +0000
commit9b64b4aec734d0e16d3523e9d82a8c9fac61017b (patch)
treeab556088e086b4c0ab0cc508dafd714df23bc9d6 /chrome/browser/sync
parented474beb2bf485c886858e824f7ac9522f427dcf (diff)
downloadchromium_src-9b64b4aec734d0e16d3523e9d82a8c9fac61017b.zip
chromium_src-9b64b4aec734d0e16d3523e9d82a8c9fac61017b.tar.gz
chromium_src-9b64b4aec734d0e16d3523e9d82a8c9fac61017b.tar.bz2
Add autofill proto buffer for sync.
BUG=34203 TEST=none Review URL: http://codereview.chromium.org/562027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38033 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r--chrome/browser/sync/protocol/autofill_specifics.proto24
1 files changed, 24 insertions, 0 deletions
diff --git a/chrome/browser/sync/protocol/autofill_specifics.proto b/chrome/browser/sync/protocol/autofill_specifics.proto
new file mode 100644
index 0000000..a96ea8e
--- /dev/null
+++ b/chrome/browser/sync/protocol/autofill_specifics.proto
@@ -0,0 +1,24 @@
+// Copyright (c) 2010 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 datatype extension for autofill.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package sync_pb;
+
+import "sync.proto";
+
+// Properties of autofill sync objects.
+message AutofillSpecifics {
+ required string name = 1;
+ required string value = 2;
+ repeated int64 usage_timestamp = 3;
+}
+
+extend EntitySpecifics {
+ optional AutofillSpecifics autofill = 31729;
+}