Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1249)

Side by Side Diff: chrome/browser/sync/protocol/password_specifics.proto

Issue 6465005: [Sync] Initial support for encrypting any datatype (no UI hookup yet). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Self review Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Sync protocol datatype extension for password data. 5 // Sync protocol datatype extension for password data.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 option retain_unknown_fields = true; 10 option retain_unknown_fields = true;
(...skipping 20 matching lines...) Expand all
31 optional bool blacklisted = 12; 31 optional bool blacklisted = 12;
32 } 32 }
33 33
34 // Properties of password sync objects. The actual password data is held in a 34 // Properties of password sync objects. The actual password data is held in a
35 // PasswordSpecificsData that is encrypted into |encrypted|. 35 // PasswordSpecificsData that is encrypted into |encrypted|.
36 message PasswordSpecifics { 36 message PasswordSpecifics {
37 optional EncryptedData encrypted = 1; 37 optional EncryptedData encrypted = 1;
38 } 38 }
39 39
40 extend EntitySpecifics { 40 extend EntitySpecifics {
41 optional PasswordSpecifics password = 45873; 41 » optional PasswordSpecifics password = 45873;
42 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698