| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 // accessed through ExternalPolicyExtensionProvider. | 1258 // accessed through ExternalPolicyExtensionProvider. |
| 1259 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1259 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
| 1260 | 1260 |
| 1261 // Time of the last, and next scheduled, extensions auto-update checks. | 1261 // Time of the last, and next scheduled, extensions auto-update checks. |
| 1262 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 1262 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; |
| 1263 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 1263 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; |
| 1264 // Version number of last blacklist check | 1264 // Version number of last blacklist check |
| 1265 const char kExtensionBlacklistUpdateVersion[] = | 1265 const char kExtensionBlacklistUpdateVersion[] = |
| 1266 "extensions.blacklistupdate.version"; | 1266 "extensions.blacklistupdate.version"; |
| 1267 | 1267 |
| 1268 const char kExtensionSidebarWidth[] = "extensions.sidebar.width"; | |
| 1269 | |
| 1270 // Number of times the NTP4 informational bubble has been shown. | 1268 // Number of times the NTP4 informational bubble has been shown. |
| 1271 const char kNTP4IntroDisplayCount[] = "ntp.intro_display_count"; | 1269 const char kNTP4IntroDisplayCount[] = "ntp.intro_display_count"; |
| 1272 | 1270 |
| 1273 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1271 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| 1274 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1272 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
| 1275 | 1273 |
| 1276 // The URLs that have been pinned to the Most Visited section of the New Tab | 1274 // The URLs that have been pinned to the Most Visited section of the New Tab |
| 1277 // Page. | 1275 // Page. |
| 1278 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | 1276 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; |
| 1279 | 1277 |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1691 | 1689 |
| 1692 // String that represents the recovery component last downloaded version. This | 1690 // String that represents the recovery component last downloaded version. This |
| 1693 // takes the usual 'a.b.c.d' notation. | 1691 // takes the usual 'a.b.c.d' notation. |
| 1694 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1692 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1695 | 1693 |
| 1696 // String that stores the component updater last known state. This is used for | 1694 // String that stores the component updater last known state. This is used for |
| 1697 // troubleshooting. | 1695 // troubleshooting. |
| 1698 const char kComponentUpdaterState[] = "component_updater.state"; | 1696 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1699 | 1697 |
| 1700 } // namespace prefs | 1698 } // namespace prefs |
| OLD | NEW |