| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "components/variations/pref_names.h" | 5 #include "components/variations/pref_names.h" |
| 6 | 6 |
| 7 namespace variations { | 7 namespace variations { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // Base64-encoded compressed serialized form of the variations seed protobuf. | 10 // Base64-encoded compressed serialized form of the variations seed protobuf. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "variations_permanent_consistency_country"; | 25 "variations_permanent_consistency_country"; |
| 26 | 26 |
| 27 // A serialized PermutedEntropyCache protobuf, used as a cache to avoid | 27 // A serialized PermutedEntropyCache protobuf, used as a cache to avoid |
| 28 // recomputing permutations. | 28 // recomputing permutations. |
| 29 const char kVariationsPermutedEntropyCache[] = | 29 const char kVariationsPermutedEntropyCache[] = |
| 30 "user_experience_metrics.permuted_entropy_cache"; | 30 "user_experience_metrics.permuted_entropy_cache"; |
| 31 | 31 |
| 32 // String for the restrict parameter to be appended to the variations URL. | 32 // String for the restrict parameter to be appended to the variations URL. |
| 33 const char kVariationsRestrictParameter[] = "variations_restrict_parameter"; | 33 const char kVariationsRestrictParameter[] = "variations_restrict_parameter"; |
| 34 | 34 |
| 35 // Base64-encoded serialized form of the variations seed protobuf. | |
| 36 const char kVariationsSeed[] = "variations_seed"; | |
| 37 | |
| 38 // 64-bit integer serialization of the base::Time from the last seed received. | 35 // 64-bit integer serialization of the base::Time from the last seed received. |
| 39 const char kVariationsSeedDate[] = "variations_seed_date"; | 36 const char kVariationsSeedDate[] = "variations_seed_date"; |
| 40 | 37 |
| 41 // Digital signature of the binary variations seed data, base64-encoded. | 38 // Digital signature of the binary variations seed data, base64-encoded. |
| 42 const char kVariationsSeedSignature[] = "variations_seed_signature"; | 39 const char kVariationsSeedSignature[] = "variations_seed_signature"; |
| 43 | 40 |
| 44 } // namespace prefs | 41 } // namespace prefs |
| 45 } // namespace metrics | 42 } // namespace metrics |
| OLD | NEW |