| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |