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 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1333 const char kVariationsSeedDate[] = "variations_seed_date"; | 1333 const char kVariationsSeedDate[] = "variations_seed_date"; |
1334 | 1334 |
1335 // Where profile specific metrics are placed. | 1335 // Where profile specific metrics are placed. |
1336 const char kProfileMetrics[] = "user_experience_metrics.profiles"; | 1336 const char kProfileMetrics[] = "user_experience_metrics.profiles"; |
1337 | 1337 |
1338 // The metrics for a profile are stored as dictionary values under the | 1338 // The metrics for a profile are stored as dictionary values under the |
1339 // path kProfileMetrics. The individual metrics are placed under the path | 1339 // path kProfileMetrics. The individual metrics are placed under the path |
1340 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. | 1340 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. |
1341 const char kProfilePrefix[] = "profile-"; | 1341 const char kProfilePrefix[] = "profile-"; |
1342 | 1342 |
| 1343 // Reset Profile Data dialog preferences |
| 1344 const char kResetDefaultSearchEngine[] = |
| 1345 "browser.reset_profile_settings.default_search_engine"; |
| 1346 const char kResetHomepage[] = "browser.reset_profile_settings.homepage"; |
| 1347 const char kResetContentSettings[] = |
| 1348 "browser.reset_profile_settings.content_settings"; |
| 1349 const char kResetCookiesAndSiteData[] = |
| 1350 "browser.reset_profile_settings.cookies_and_site_data"; |
| 1351 const char kResetExtensions[] = "browser.reset_profile_settings.extensions"; |
| 1352 const char kResetExtensionsHandling[] = |
| 1353 "browser.reset_profile_settings.extensions_handling"; |
| 1354 |
1343 // True if the previous run of the program exited cleanly. | 1355 // True if the previous run of the program exited cleanly. |
1344 const char kStabilityExitedCleanly[] = | 1356 const char kStabilityExitedCleanly[] = |
1345 "user_experience_metrics.stability.exited_cleanly"; | 1357 "user_experience_metrics.stability.exited_cleanly"; |
1346 | 1358 |
1347 // Version string of previous run, which is used to assure that stability | 1359 // Version string of previous run, which is used to assure that stability |
1348 // metrics reported under current version reflect stability of the same version. | 1360 // metrics reported under current version reflect stability of the same version. |
1349 const char kStabilityStatsVersion[] = | 1361 const char kStabilityStatsVersion[] = |
1350 "user_experience_metrics.stability.stats_version"; | 1362 "user_experience_metrics.stability.stats_version"; |
1351 | 1363 |
1352 // Build time, in seconds since an epoch, which is used to assure that stability | 1364 // Build time, in seconds since an epoch, which is used to assure that stability |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2449 // ping and the time of the last ping. | 2461 // ping and the time of the last ping. |
2450 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2462 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2451 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2463 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2452 | 2464 |
2453 // A string pref for storing the salt used to compute the pepper device ID. | 2465 // A string pref for storing the salt used to compute the pepper device ID. |
2454 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2466 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2455 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2467 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2456 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2468 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2457 | 2469 |
2458 } // namespace prefs | 2470 } // namespace prefs |
OLD | NEW |