summaryrefslogtreecommitdiffstats
path: root/sync/protocol/password_specifics.proto
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-10 01:06:41 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-10 01:06:41 +0000
commit1bcf30ec84f19d40cc5c3f6051d0bb5860bfc74a (patch)
treea1c5b036a8aad3554aaca8947c3a249a8d5945e3 /sync/protocol/password_specifics.proto
parent70180a806fe954878cdca606620da7a153a9efe7 (diff)
downloadchromium_src-1bcf30ec84f19d40cc5c3f6051d0bb5860bfc74a.zip
chromium_src-1bcf30ec84f19d40cc5c3f6051d0bb5860bfc74a.tar.gz
chromium_src-1bcf30ec84f19d40cc5c3f6051d0bb5860bfc74a.tar.bz2
[Sync] Create new top-level sync/ directory
Move sync .proto files to sync/protocol. Update all references. This begins the Great Sync Migration. BUG=117585,43624 TEST= Review URL: https://chromiumcodereview.appspot.com/9668028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125967 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/protocol/password_specifics.proto')
-rw-r--r--sync/protocol/password_specifics.proto41
1 files changed, 41 insertions, 0 deletions
diff --git a/sync/protocol/password_specifics.proto b/sync/protocol/password_specifics.proto
new file mode 100644
index 0000000..769914433
--- /dev/null
+++ b/sync/protocol/password_specifics.proto
@@ -0,0 +1,41 @@
+// Copyright (c) 2012 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 password data.
+
+// Update proto_value_conversions{.h,.cc,_unittest.cc} if you change
+// any fields in this file.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+option retain_unknown_fields = true;
+
+package sync_pb;
+
+import "encryption.proto";
+
+// These are the properties that get serialized into the |encrypted| field of
+// PasswordSpecifics.
+message PasswordSpecificsData {
+ optional int32 scheme = 1;
+ optional string signon_realm = 2;
+ optional string origin = 3;
+ optional string action = 4;
+ optional string username_element = 5;
+ optional string username_value = 6;
+ optional string password_element = 7;
+ optional string password_value = 8;
+ optional bool ssl_valid = 9;
+ optional bool preferred = 10;
+ optional int64 date_created = 11;
+ optional bool blacklisted = 12;
+}
+
+// Properties of password sync objects. The actual password data is held in a
+// PasswordSpecificsData that is encrypted into |encrypted|.
+message PasswordSpecifics {
+ optional EncryptedData encrypted = 1;
+}
+