Chromium Code Reviews| 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 #ifndef SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ |
| 6 #define SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "sync/internal_api/public/base/model_type.h" | 10 #include "sync/internal_api/public/base/model_type.h" |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 wallet_sync_enabled == rhs.wallet_sync_enabled); | 29 wallet_sync_enabled == rhs.wallet_sync_enabled); |
| 30 } | 30 } |
| 31 | 31 |
| 32 // The number of favicons that a client is permitted to sync. | 32 // The number of favicons that a client is permitted to sync. |
| 33 int favicon_sync_limit; | 33 int favicon_sync_limit; |
| 34 | 34 |
| 35 // Enable invalidations over GCM channel. | 35 // Enable invalidations over GCM channel. |
| 36 bool gcm_invalidations_enabled; | 36 bool gcm_invalidations_enabled; |
| 37 | 37 |
| 38 // Enable the Wallet Autofill sync datatype. | 38 // Enable the Wallet Autofill sync datatype. |
| 39 // No longer used as of M51. | |
| 39 bool wallet_sync_enabled; | 40 bool wallet_sync_enabled; |
|
Nicolas Zea
2016/03/15 18:19:27
We can actually just delete this (and kWalletSyncT
Justin Donnelly
2016/03/15 20:02:25
Done.
| |
| 40 }; | 41 }; |
| 41 | 42 |
| 42 } // namespace syncer | 43 } // namespace syncer |
| 43 | 44 |
| 44 #endif // SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ | 45 #endif // SYNC_INTERNAL_API_PUBLIC_UTIL_EXPERIMENTS_H_ |
| OLD | NEW |