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

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

Issue 11445002: Sync user's custom spellcheck dictionary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add browser tests for dictionary change notifications in settings Created 7 years, 11 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
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 optional EncryptedData keystore_decryptor_token = 31; 103 optional EncryptedData keystore_decryptor_token = 31;
104 104
105 // The time (in epoch milliseconds) at which the keystore migration was 105 // The time (in epoch milliseconds) at which the keystore migration was
106 // performed. 106 // performed.
107 optional int64 keystore_migration_time = 32; 107 optional int64 keystore_migration_time = 32;
108 108
109 // The time (in epoch milliseconds) at which a custom passphrase was set. 109 // 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 110 // Note: this field may not be set if the custom passphrase was applied before
111 // this field was introduced. 111 // this field was introduced.
112 optional int64 custom_passphrase_time = 33; 112 optional int64 custom_passphrase_time = 33;
113
114 // Boolean corresponding to whether custom spelling dictionary should be
115 // encrypted.
116 optional bool encrypt_dictionary = 34;
113 } 117 }
114 118
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698