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

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

Issue 875243003: Add sync experiment flag for wallet datatype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 10 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
« no previous file with comments | « sync/internal_api/sync_manager_impl.cc ('k') | sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 }
OLDNEW
« no previous file with comments | « sync/internal_api/sync_manager_impl.cc ('k') | sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698