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 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1342 // A boolean pref of the EULA accepted flag. | 1342 // A boolean pref of the EULA accepted flag. |
1343 const char kEulaAccepted[] = "EulaAccepted"; | 1343 const char kEulaAccepted[] = "EulaAccepted"; |
1344 | 1344 |
1345 // The metrics client GUID, entropy source and session ID. | 1345 // The metrics client GUID, entropy source and session ID. |
1346 // Note: The names client_id2 and low_entropy_source2 are a result of creating | 1346 // Note: The names client_id2 and low_entropy_source2 are a result of creating |
1347 // new prefs to do a one-time reset of the previous values. | 1347 // new prefs to do a one-time reset of the previous values. |
1348 const char kMetricsClientID[] = "user_experience_metrics.client_id2"; | 1348 const char kMetricsClientID[] = "user_experience_metrics.client_id2"; |
1349 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 1349 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
1350 const char kMetricsLowEntropySource[] = | 1350 const char kMetricsLowEntropySource[] = |
1351 "user_experience_metrics.low_entropy_source2"; | 1351 "user_experience_metrics.low_entropy_source2"; |
1352 const char kMetricsPermutedEntropyCache[] = | |
1353 "user_experience_metrics.permuted_entropy_cache"; | |
1354 | 1352 |
1355 // Old client id and low entropy source values, cleared the first time this | 1353 // Old client id and low entropy source values, cleared the first time this |
1356 // version is launched. | 1354 // version is launched. |
1357 // TODO(asvitkine): Delete these after a few releases have gone by and old | 1355 // TODO(asvitkine): Delete these after a few releases have gone by and old |
1358 // values have been cleaned up. http://crbug.com/357704 | 1356 // values have been cleaned up. http://crbug.com/357704 |
1359 const char kMetricsOldClientID[] = "user_experience_metrics.client_id"; | 1357 const char kMetricsOldClientID[] = "user_experience_metrics.client_id"; |
1360 const char kMetricsOldLowEntropySource[] = | 1358 const char kMetricsOldLowEntropySource[] = |
1361 "user_experience_metrics.low_entropy_source"; | 1359 "user_experience_metrics.low_entropy_source"; |
1362 | 1360 |
1363 // Boolean that specifies whether or not crash reporting and metrics reporting | 1361 // Boolean that specifies whether or not crash reporting and metrics reporting |
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2521 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2519 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2522 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2520 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2523 // title or an empty string if the bookmark node was removed. | 2521 // title or an empty string if the bookmark node was removed. |
2524 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2522 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2525 #endif | 2523 #endif |
2526 | 2524 |
2527 // Whether DNS Quick Check is disabled in proxy resolution. | 2525 // Whether DNS Quick Check is disabled in proxy resolution. |
2528 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2526 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2529 | 2527 |
2530 } // namespace prefs | 2528 } // namespace prefs |
OLD | NEW |