| 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 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 // accessed through ExternalPolicyExtensionProvider. | 1291 // accessed through ExternalPolicyExtensionProvider. |
| 1292 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1292 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
| 1293 | 1293 |
| 1294 // Time of the last, and next scheduled, extensions auto-update checks. | 1294 // Time of the last, and next scheduled, extensions auto-update checks. |
| 1295 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 1295 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; |
| 1296 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 1296 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; |
| 1297 // Version number of last blacklist check | 1297 // Version number of last blacklist check |
| 1298 const char kExtensionBlacklistUpdateVersion[] = | 1298 const char kExtensionBlacklistUpdateVersion[] = |
| 1299 "extensions.blacklistupdate.version"; | 1299 "extensions.blacklistupdate.version"; |
| 1300 | 1300 |
| 1301 const char kExtensionSidebarWidth[] = "extensions.sidebar.width"; | |
| 1302 | |
| 1303 // Number of times the NTP4 informational bubble has been shown. | 1301 // Number of times the NTP4 informational bubble has been shown. |
| 1304 const char kNTP4IntroDisplayCount[] = "ntp.intro_display_count"; | 1302 const char kNTP4IntroDisplayCount[] = "ntp.intro_display_count"; |
| 1305 | 1303 |
| 1306 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1304 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| 1307 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1305 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
| 1308 | 1306 |
| 1309 // The URLs that have been pinned to the Most Visited section of the New Tab | 1307 // The URLs that have been pinned to the Most Visited section of the New Tab |
| 1310 // Page. | 1308 // Page. |
| 1311 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | 1309 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; |
| 1312 | 1310 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1727 | 1725 |
| 1728 // String that represents the recovery component last downloaded version. This | 1726 // String that represents the recovery component last downloaded version. This |
| 1729 // takes the usual 'a.b.c.d' notation. | 1727 // takes the usual 'a.b.c.d' notation. |
| 1730 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1728 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1731 | 1729 |
| 1732 // String that stores the component updater last known state. This is used for | 1730 // String that stores the component updater last known state. This is used for |
| 1733 // troubleshooting. | 1731 // troubleshooting. |
| 1734 const char kComponentUpdaterState[] = "component_updater.state"; | 1732 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1735 | 1733 |
| 1736 } // namespace prefs | 1734 } // namespace prefs |
| OLD | NEW |