summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/protocol/bookmark_specifics.proto
diff options
context:
space:
mode:
authorchron@google.com <chron@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-16 01:36:54 +0000
committerchron@google.com <chron@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-16 01:36:54 +0000
commitadcf48d837091816175e4f22224fd615781fa899 (patch)
tree65b74eca87fb5cabff022bc596968f7cdf0fcd45 /chrome/browser/sync/protocol/bookmark_specifics.proto
parentfa08ac4a4f068b054a2048d53c5b2c4b4431eb5b (diff)
downloadchromium_src-adcf48d837091816175e4f22224fd615781fa899.zip
chromium_src-adcf48d837091816175e4f22224fd615781fa899.tar.gz
chromium_src-adcf48d837091816175e4f22224fd615781fa899.tar.bz2
Merge protocol buffer changes from server back into client.
Use new style protocol in addition to old style protocol when talking to the server in preparation for new data type synchronization. original patch from issue 487011 TEST=manually tested old client new client new server mixes BUG=30032 Review URL: http://codereview.chromium.org/549029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36444 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/protocol/bookmark_specifics.proto')
-rw-r--r--chrome/browser/sync/protocol/bookmark_specifics.proto23
1 files changed, 23 insertions, 0 deletions
diff --git a/chrome/browser/sync/protocol/bookmark_specifics.proto b/chrome/browser/sync/protocol/bookmark_specifics.proto
new file mode 100644
index 0000000..976cedc
--- /dev/null
+++ b/chrome/browser/sync/protocol/bookmark_specifics.proto
@@ -0,0 +1,23 @@
+// Copyright (c) 2009 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 bookmarks.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package sync_pb;
+
+import "sync.proto";
+
+// Properties of bookmark sync objects.
+message BookmarkSpecifics {
+ optional string url = 1;
+ optional bytes favicon = 2;
+}
+
+extend EntitySpecifics {
+ optional BookmarkSpecifics bookmark = 32904;
+}