| 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 2435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2446 #endif | 2446 #endif |
| 2447 | 2447 |
| 2448 // Counts how many more times the 'profile on a network share' warning should be | 2448 // Counts how many more times the 'profile on a network share' warning should be |
| 2449 // shown to the user before the next silence period. | 2449 // shown to the user before the next silence period. |
| 2450 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2450 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2451 // Tracks the time of the last shown warning. Used to reset | 2451 // Tracks the time of the last shown warning. Used to reset |
| 2452 // |network_profile.warnings_left| after a silence period. | 2452 // |network_profile.warnings_left| after a silence period. |
| 2453 const char kNetworkProfileLastWarningTime[] = | 2453 const char kNetworkProfileLastWarningTime[] = |
| 2454 "network_profile.last_warning_time"; | 2454 "network_profile.last_warning_time"; |
| 2455 | 2455 |
| 2456 // 64-bit serialization of the time last policy usage statistics were collected | |
| 2457 // by UMA_HISTOGRAM_ENUMERATION. | |
| 2458 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | |
| 2459 | |
| 2460 #if defined(OS_CHROMEOS) | 2456 #if defined(OS_CHROMEOS) |
| 2461 // The RLZ brand code, if enabled. | 2457 // The RLZ brand code, if enabled. |
| 2462 const char kRLZBrand[] = "rlz.brand"; | 2458 const char kRLZBrand[] = "rlz.brand"; |
| 2463 // Whether RLZ pings are disabled. | 2459 // Whether RLZ pings are disabled. |
| 2464 const char kRLZDisabled[] = "rlz.disabled"; | 2460 const char kRLZDisabled[] = "rlz.disabled"; |
| 2465 #endif | 2461 #endif |
| 2466 | 2462 |
| 2467 // The directory in user data dir that contains the profile to be used with the | 2463 // The directory in user data dir that contains the profile to be used with the |
| 2468 // app launcher. | 2464 // app launcher. |
| 2469 extern const char kAppListProfile[] = "app_list.profile"; | 2465 extern const char kAppListProfile[] = "app_list.profile"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2496 // ActivityLog initialization before the extension system is initialized. | 2492 // ActivityLog initialization before the extension system is initialized. |
| 2497 const char kWatchdogExtensionActive[] = | 2493 const char kWatchdogExtensionActive[] = |
| 2498 "profile.extensions.activity_log.watchdog_extension_active"; | 2494 "profile.extensions.activity_log.watchdog_extension_active"; |
| 2499 | 2495 |
| 2500 // A dictionary pref which maps profile names to dictionary values which hold | 2496 // A dictionary pref which maps profile names to dictionary values which hold |
| 2501 // hashes of profile prefs that we track to detect changes that happen outside | 2497 // hashes of profile prefs that we track to detect changes that happen outside |
| 2502 // of Chrome. | 2498 // of Chrome. |
| 2503 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2499 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2504 | 2500 |
| 2505 } // namespace prefs | 2501 } // namespace prefs |
| OLD | NEW |