| 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 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 const char kVariationsSeedDate[] = "variations_seed_date"; | 1340 const char kVariationsSeedDate[] = "variations_seed_date"; |
| 1341 | 1341 |
| 1342 // Where profile specific metrics are placed. | 1342 // Where profile specific metrics are placed. |
| 1343 const char kProfileMetrics[] = "user_experience_metrics.profiles"; | 1343 const char kProfileMetrics[] = "user_experience_metrics.profiles"; |
| 1344 | 1344 |
| 1345 // The metrics for a profile are stored as dictionary values under the | 1345 // The metrics for a profile are stored as dictionary values under the |
| 1346 // path kProfileMetrics. The individual metrics are placed under the path | 1346 // path kProfileMetrics. The individual metrics are placed under the path |
| 1347 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. | 1347 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. |
| 1348 const char kProfilePrefix[] = "profile-"; | 1348 const char kProfilePrefix[] = "profile-"; |
| 1349 | 1349 |
| 1350 // Reset Profile Data dialog preferences | |
| 1351 const char kResetDefaultSearchEngine[] = | |
| 1352 "browser.reset_profile_settings.default_search_engine"; | |
| 1353 const char kResetHomepage[] = "browser.reset_profile_settings.homepage"; | |
| 1354 const char kResetContentSettings[] = | |
| 1355 "browser.reset_profile_settings.content_settings"; | |
| 1356 const char kResetCookiesAndSiteData[] = | |
| 1357 "browser.reset_profile_settings.cookies_and_site_data"; | |
| 1358 const char kResetExtensions[] = "browser.reset_profile_settings.extensions"; | |
| 1359 const char kResetExtensionsHandling[] = | |
| 1360 "browser.reset_profile_settings.extensions_handling"; | |
| 1361 | |
| 1362 // True if the previous run of the program exited cleanly. | 1350 // True if the previous run of the program exited cleanly. |
| 1363 const char kStabilityExitedCleanly[] = | 1351 const char kStabilityExitedCleanly[] = |
| 1364 "user_experience_metrics.stability.exited_cleanly"; | 1352 "user_experience_metrics.stability.exited_cleanly"; |
| 1365 | 1353 |
| 1366 // Version string of previous run, which is used to assure that stability | 1354 // Version string of previous run, which is used to assure that stability |
| 1367 // metrics reported under current version reflect stability of the same version. | 1355 // metrics reported under current version reflect stability of the same version. |
| 1368 const char kStabilityStatsVersion[] = | 1356 const char kStabilityStatsVersion[] = |
| 1369 "user_experience_metrics.stability.stats_version"; | 1357 "user_experience_metrics.stability.stats_version"; |
| 1370 | 1358 |
| 1371 // Build time, in seconds since an epoch, which is used to assure that stability | 1359 // Build time, in seconds since an epoch, which is used to assure that stability |
| (...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2499 | 2487 |
| 2500 // How often the bubble has been shown. | 2488 // How often the bubble has been shown. |
| 2501 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2489 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2502 | 2490 |
| 2503 // A string pref for storing the salt used to compute the pepper device ID. | 2491 // A string pref for storing the salt used to compute the pepper device ID. |
| 2504 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2492 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2505 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2493 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2506 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2494 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2507 | 2495 |
| 2508 } // namespace prefs | 2496 } // namespace prefs |
| OLD | NEW |