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

Side by Side Diff: sync/protocol/nigori_specifics.proto

Issue 11228038: Linux: change protobuf default option to allow building (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 nigori keys. 5 // Sync protocol datatype extension for nigori keys.
6 6
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change
8 // any fields in this file. 8 // any fields in this file.
9 9
10 syntax = "proto2"; 10 syntax = "proto2";
11 11
12 option optimize_for = LITE_RUNTIME;
13 option retain_unknown_fields = true;
14
15 package sync_pb; 12 package sync_pb;
16 13
17 import "encryption.proto"; 14 import "encryption.proto";
18 15
19 message NigoriKey { 16 message NigoriKey {
20 optional string name = 1; 17 optional string name = 1;
21 optional bytes user_key = 2; 18 optional bytes user_key = 2;
22 optional bytes encryption_key = 3; 19 optional bytes encryption_key = 3;
23 optional bytes mac_key = 4; 20 optional bytes mac_key = 4;
24 } 21 }
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 // The time (in epoch milliseconds) at which the keystore migration was 102 // The time (in epoch milliseconds) at which the keystore migration was
106 // performed. 103 // performed.
107 optional int64 keystore_migration_time = 32; 104 optional int64 keystore_migration_time = 32;
108 105
109 // The time (in epoch milliseconds) at which a custom passphrase was set. 106 // The time (in epoch milliseconds) at which a custom passphrase was set.
110 // Note: this field may not be set if the custom passphrase was applied before 107 // Note: this field may not be set if the custom passphrase was applied before
111 // this field was introduced. 108 // this field was introduced.
112 optional int64 custom_passphrase_time = 33; 109 optional int64 custom_passphrase_time = 33;
113 } 110 }
114 111
OLDNEW
« no previous file with comments | « sync/protocol/history_delete_directive_specifics.proto ('k') | sync/protocol/password_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698