Disable flaky test ExtensionActionContextMenuTest.RunInspectPopup
[chromium-blink-merge.git] / sync / protocol / nigori_specifics.proto
blob6e72ae1493688da2c8910e49c816171f33adbc38
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
3 // found in the LICENSE file.
4 //
5 // Sync protocol datatype extension for nigori keys.
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change
8 // any fields in this file.
10 syntax = "proto2";
12 option optimize_for = LITE_RUNTIME;
13 option retain_unknown_fields = true;
15 package sync_pb;
17 import "encryption.proto";
19 message NigoriKey {
20   optional string name = 1;
21   optional bytes user_key = 2;
22   optional bytes encryption_key = 3;
23   optional bytes mac_key = 4;
26 message NigoriKeyBag {
27   repeated NigoriKey key = 2;
30 // Properties of nigori sync object.
31 message NigoriSpecifics {
32   optional EncryptedData encryption_keybag = 1;
33   // Once keystore migration is performed, we have to freeze the keybag so that
34   // older clients (that don't support keystore encryption) do not attempt to
35   // update the keybag.
36   // Previously |using_explicit_passphrase|.
37   optional bool keybag_is_frozen = 2;
39   // Obsolete encryption fields. These were deprecated due to legacy versions
40   // that understand their usage but did not perform encryption properly.
41   // optional bool deprecated_encrypt_bookmarks = 3;
42   // optional bool deprecated_encrypt_preferences = 4;
43   // optional bool deprecated_encrypt_autofill_profile = 5;
44   // optional bool deprecated_encrypt_autofill = 6;
45   // optional bool deprecated_encrypt_themes = 7;
46   // optional bool deprecated_encrypt_typed_urls = 8;
47   // optional bool deprecated_encrypt_extensions = 9;
48   // optional bool deprecated_encrypt_sessions = 10;
49   // optional bool deprecated_encrypt_apps = 11;
50   // optional bool deprecated_encrypt_search_engines = 12;
52   // Booleans corresponding to whether a datatype should be encrypted.
53   // Passwords are always encrypted, so we don't need a field here.
54   // History delete directives need to be consumable by the server, and
55   // thus can't be encrypted.
56   // Synced Notifications need to be consumed by the server (the read flag)
57   // and thus can't be encrypted.
58   optional bool encrypt_bookmarks = 13;
59   optional bool encrypt_preferences = 14;
60   optional bool encrypt_autofill_profile = 15;
61   optional bool encrypt_autofill = 16;
62   optional bool encrypt_themes = 17;
63   optional bool encrypt_typed_urls = 18;
64   optional bool encrypt_extensions = 19;
65   optional bool encrypt_sessions = 20;
66   optional bool encrypt_apps = 21;
67   optional bool encrypt_search_engines = 22;
69   // Deprecated on clients where tab sync is enabled by default.
70   // optional bool sync_tabs = 23;
72   // If true, all current and future datatypes will be encrypted.
73   optional bool encrypt_everything = 24;
75   optional bool encrypt_extension_settings = 25;
76   optional bool encrypt_app_notifications = 26;
77   optional bool encrypt_app_settings = 27;
79   // User device information. Contains information about each device that has a
80   // sync-enabled Chrome browser connected to the user account.
81   // This has been moved to the DeviceInfo message.
82   // repeated DeviceInformation deprecated_device_information = 28;
84   // Enable syncing favicons as part of tab sync.
85   optional bool sync_tab_favicons = 29;
87   // The state of the passphrase required to decrypt |encryption_keybag|.
88   enum PassphraseType {
89     // Gaia-based encryption passphrase. Deprecated.
90     IMPLICIT_PASSPHRASE = 1;
91     // Keystore key encryption passphrase. Uses |keystore_bootstrap| to
92     // decrypt |encryption_keybag|.
93     KEYSTORE_PASSPHRASE = 2;
94     // Previous Gaia-based passphrase frozen and treated as a custom passphrase.
95     FROZEN_IMPLICIT_PASSPHRASE  = 3;
96     // User provided custom passphrase.
97     CUSTOM_PASSPHRASE = 4;
98   }
99   optional PassphraseType passphrase_type = 30
100       [default = IMPLICIT_PASSPHRASE];
102   // The keystore decryptor token blob. Encrypted with the keystore key, and
103   // contains the encryption key used to decrypt |encryption_keybag|.
104   // Only set if passphrase_state == KEYSTORE_PASSPHRASE.
105   optional EncryptedData keystore_decryptor_token = 31;
107   // The time (in epoch milliseconds) at which the keystore migration was
108   // performed.
109   optional int64 keystore_migration_time = 32;
111   // The time (in epoch milliseconds) at which a custom passphrase was set.
112   // Note: this field may not be set if the custom passphrase was applied before
113   // this field was introduced.
114   optional int64 custom_passphrase_time = 33;
116   // Boolean corresponding to whether custom spelling dictionary should be
117   // encrypted.
118   optional bool encrypt_dictionary = 34;
120   // Boolean corresponding to Whether to encrypt favicons data or not.
121   optional bool encrypt_favicon_images = 35;
122   optional bool encrypt_favicon_tracking = 36;