| OLD | NEW |
| 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 experimental feature flags. | 5 // Sync protocol datatype extension for experimental feature flags. |
| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 message EnhancedBookmarksFlags { | 48 message EnhancedBookmarksFlags { |
| 49 optional bool enabled = 1; | 49 optional bool enabled = 1; |
| 50 optional string extension_id = 2; | 50 optional string extension_id = 2; |
| 51 } | 51 } |
| 52 | 52 |
| 53 // Flags for enabling GCM channel for invalidations. | 53 // Flags for enabling GCM channel for invalidations. |
| 54 message GcmInvalidationsFlags { | 54 message GcmInvalidationsFlags { |
| 55 optional bool enabled = 1; | 55 optional bool enabled = 1; |
| 56 } | 56 } |
| 57 | 57 |
| 58 // Flags for enabling wallet data syncing. |
| 59 message WalletSyncFlags { |
| 60 optional bool enabled = 1; |
| 61 } |
| 62 |
| 58 // Contains one flag or set of related flags. Each node of the experiments type | 63 // Contains one flag or set of related flags. Each node of the experiments type |
| 59 // will have a unique_client_tag identifying which flags it contains. By | 64 // will have a unique_client_tag identifying which flags it contains. By |
| 60 // convention, the tag name should match the sub-message name. | 65 // convention, the tag name should match the sub-message name. |
| 61 message ExperimentsSpecifics { | 66 message ExperimentsSpecifics { |
| 62 optional KeystoreEncryptionFlags keystore_encryption = 1; | 67 optional KeystoreEncryptionFlags keystore_encryption = 1; |
| 63 optional HistoryDeleteDirectives history_delete_directives = 2; | 68 optional HistoryDeleteDirectives history_delete_directives = 2; |
| 64 optional AutofillCullingFlags autofill_culling = 3; | 69 optional AutofillCullingFlags autofill_culling = 3; |
| 65 optional FaviconSyncFlags favicon_sync = 4; | 70 optional FaviconSyncFlags favicon_sync = 4; |
| 66 optional PreCommitUpdateAvoidanceFlags pre_commit_update_avoidance = 5; | 71 optional PreCommitUpdateAvoidanceFlags pre_commit_update_avoidance = 5; |
| 67 optional GcmChannelFlags gcm_channel = 6; | 72 optional GcmChannelFlags gcm_channel = 6; |
| 68 optional EnhancedBookmarksFlags enhanced_bookmarks = 7; | 73 optional EnhancedBookmarksFlags enhanced_bookmarks = 7; |
| 69 optional GcmInvalidationsFlags gcm_invalidations = 8; | 74 optional GcmInvalidationsFlags gcm_invalidations = 8; |
| 75 optional WalletSyncFlags wallet_sync = 9; |
| 70 } | 76 } |
| OLD | NEW |