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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1524 // accessed through extensions::ExternalPolicyProvider. | 1524 // accessed through extensions::ExternalPolicyProvider. |
1525 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1525 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
1526 | 1526 |
1527 // Time of the last, and next scheduled, extensions auto-update checks. | 1527 // Time of the last, and next scheduled, extensions auto-update checks. |
1528 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 1528 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; |
1529 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 1529 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; |
1530 // Version number of last blacklist check | 1530 // Version number of last blacklist check |
1531 const char kExtensionBlacklistUpdateVersion[] = | 1531 const char kExtensionBlacklistUpdateVersion[] = |
1532 "extensions.blacklistupdate.version"; | 1532 "extensions.blacklistupdate.version"; |
1533 | 1533 |
| 1534 // Indicates on-disk data might have skeletal data that needs to be cleaned |
| 1535 // on the next start of the browser. |
| 1536 const char kExtensionStorageGarbageCollect[] = |
| 1537 "extensions.storage.garbagecollect"; |
| 1538 |
1534 // Keeps track of which sessions are collapsed in the Other Devices menu. | 1539 // Keeps track of which sessions are collapsed in the Other Devices menu. |
1535 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; | 1540 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; |
1536 | 1541 |
1537 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1542 // New Tab Page URLs that should not be shown as most visited thumbnails. |
1538 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1543 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
1539 | 1544 |
1540 // Last time of update of promo_resource_cache. | 1545 // Last time of update of promo_resource_cache. |
1541 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1546 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
1542 | 1547 |
1543 // Serves tips for the NTP. | 1548 // Serves tips for the NTP. |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2141 // Tracks the time of the last shown warning. Used to reset | 2146 // Tracks the time of the last shown warning. Used to reset |
2142 // |network_profile.warnings_left| after a silence period. | 2147 // |network_profile.warnings_left| after a silence period. |
2143 const char kNetworkProfileLastWarningTime[] = | 2148 const char kNetworkProfileLastWarningTime[] = |
2144 "network_profile.last_warning_time"; | 2149 "network_profile.last_warning_time"; |
2145 | 2150 |
2146 // 64-bit serialization of the time last policy usage statistics were collected | 2151 // 64-bit serialization of the time last policy usage statistics were collected |
2147 // by UMA_HISTOGRAM_ENUMERATION. | 2152 // by UMA_HISTOGRAM_ENUMERATION. |
2148 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2153 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2149 | 2154 |
2150 } // namespace prefs | 2155 } // namespace prefs |
OLD | NEW |