| 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 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 | 1349 |
| 1350 // Reset Profile Data dialog preferences | 1350 // Reset Profile Data dialog preferences |
| 1351 const char kResetDefaultSearchEngine[] = | 1351 const char kResetDefaultSearchEngine[] = |
| 1352 "browser.reset_profile_settings.default_search_engine"; | 1352 "browser.reset_profile_settings.default_search_engine"; |
| 1353 const char kResetHomepage[] = "browser.reset_profile_settings.homepage"; | 1353 const char kResetHomepage[] = "browser.reset_profile_settings.homepage"; |
| 1354 const char kResetContentSettings[] = | 1354 const char kResetContentSettings[] = |
| 1355 "browser.reset_profile_settings.content_settings"; | 1355 "browser.reset_profile_settings.content_settings"; |
| 1356 const char kResetCookiesAndSiteData[] = | 1356 const char kResetCookiesAndSiteData[] = |
| 1357 "browser.reset_profile_settings.cookies_and_site_data"; | 1357 "browser.reset_profile_settings.cookies_and_site_data"; |
| 1358 const char kResetExtensions[] = "browser.reset_profile_settings.extensions"; | 1358 const char kResetExtensions[] = "browser.reset_profile_settings.extensions"; |
| 1359 const char kResetExtensionsHandling[] = | |
| 1360 "browser.reset_profile_settings.extensions_handling"; | |
| 1361 | 1359 |
| 1362 // True if the previous run of the program exited cleanly. | 1360 // True if the previous run of the program exited cleanly. |
| 1363 const char kStabilityExitedCleanly[] = | 1361 const char kStabilityExitedCleanly[] = |
| 1364 "user_experience_metrics.stability.exited_cleanly"; | 1362 "user_experience_metrics.stability.exited_cleanly"; |
| 1365 | 1363 |
| 1366 // Version string of previous run, which is used to assure that stability | 1364 // Version string of previous run, which is used to assure that stability |
| 1367 // metrics reported under current version reflect stability of the same version. | 1365 // metrics reported under current version reflect stability of the same version. |
| 1368 const char kStabilityStatsVersion[] = | 1366 const char kStabilityStatsVersion[] = |
| 1369 "user_experience_metrics.stability.stats_version"; | 1367 "user_experience_metrics.stability.stats_version"; |
| 1370 | 1368 |
| (...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2499 | 2497 |
| 2500 // How often the bubble has been shown. | 2498 // How often the bubble has been shown. |
| 2501 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2502 | 2500 |
| 2503 // A string pref for storing the salt used to compute the pepper device ID. | 2501 // A string pref for storing the salt used to compute the pepper device ID. |
| 2504 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2505 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2506 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2507 | 2505 |
| 2508 } // namespace prefs | 2506 } // namespace prefs |
| OLD | NEW |