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

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

Issue 10855037: [Sync] Add history delete directive type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to head, add TODO Created 8 years, 2 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) 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";
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 optional EncryptedData keystore_decryptor_token = 31; 101 optional EncryptedData keystore_decryptor_token = 31;
102 102
103 // The time (in epoch milliseconds) at which the keystore migration was 103 // The time (in epoch milliseconds) at which the keystore migration was
104 // performed. 104 // performed.
105 optional int64 keystore_migration_time = 32; 105 optional int64 keystore_migration_time = 32;
106 106
107 // The time (in epoch milliseconds) at which a custom passphrase was set. 107 // The time (in epoch milliseconds) at which a custom passphrase was set.
108 // Note: this field may not be set if the custom passphrase was applied before 108 // Note: this field may not be set if the custom passphrase was applied before
109 // this field was introduced. 109 // this field was introduced.
110 optional int64 custom_passphrase_time = 33; 110 optional int64 custom_passphrase_time = 33;
111
112 optional bool encrypt_history_delete_directives = 34;
Nicolas Zea 2012/10/15 19:03:57 see comment in nigori util. I'm not sure it makes
akalin 2012/10/15 20:21:21 Removed, added comment.
111 } 113 }
112 114
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698