| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1290 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; | 1290 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; |
| 1291 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; | 1291 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; |
| 1292 const char kEnableUnrestrictedSSL3Fallback[] = | 1292 const char kEnableUnrestrictedSSL3Fallback[] = |
| 1293 "ssl.unrestricted_ssl3_fallback.enabled"; | 1293 "ssl.unrestricted_ssl3_fallback.enabled"; |
| 1294 | 1294 |
| 1295 // A boolean pref of the EULA accepted flag. | 1295 // A boolean pref of the EULA accepted flag. |
| 1296 const char kEulaAccepted[] = "EulaAccepted"; | 1296 const char kEulaAccepted[] = "EulaAccepted"; |
| 1297 | 1297 |
| 1298 // The metrics client GUID, entropy source and session ID. | 1298 // The metrics client GUID, entropy source and session ID. |
| 1299 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 1299 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
| 1300 const char kMetricsSecretClientID[] = |
| 1301 "user_experience_metrics.secret_client_id"; |
| 1300 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 1302 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
| 1301 const char kMetricsLowEntropySource[] = | 1303 const char kMetricsLowEntropySource[] = |
| 1302 "user_experience_metrics.low_entropy_source"; | 1304 "user_experience_metrics.low_entropy_source"; |
| 1303 const char kMetricsPermutedEntropyCache[] = | 1305 const char kMetricsPermutedEntropyCache[] = |
| 1304 "user_experience_metrics.permuted_entropy_cache"; | 1306 "user_experience_metrics.permuted_entropy_cache"; |
| 1305 | 1307 |
| 1306 // Date/time when the current metrics profile ID was created | 1308 // Date/time when the current metrics profile ID was created |
| 1307 // (which hopefully corresponds to first run). | 1309 // (which hopefully corresponds to first run). |
| 1308 const char kMetricsClientIDTimestamp[] = | 1310 const char kMetricsClientIDTimestamp[] = |
| 1309 "user_experience_metrics.client_id_timestamp"; | 1311 "user_experience_metrics.client_id_timestamp"; |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2549 // A dictionary pref which maps profile names to dictionary values which hold | 2551 // A dictionary pref which maps profile names to dictionary values which hold |
| 2550 // hashes of profile prefs that we track to detect changes that happen outside | 2552 // hashes of profile prefs that we track to detect changes that happen outside |
| 2551 // of Chrome. | 2553 // of Chrome. |
| 2552 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2554 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2553 | 2555 |
| 2554 // Stores a pair of local time and corresponding network time to bootstrap | 2556 // Stores a pair of local time and corresponding network time to bootstrap |
| 2555 // network time tracker when browser starts. | 2557 // network time tracker when browser starts. |
| 2556 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2558 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
| 2557 | 2559 |
| 2558 } // namespace prefs | 2560 } // namespace prefs |
| OLD | NEW |