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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 | 1114 |
1115 // Time of the last, and next scheduled, extensions auto-update checks. | 1115 // Time of the last, and next scheduled, extensions auto-update checks. |
1116 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 1116 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; |
1117 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 1117 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; |
1118 // Version number of last blacklist check | 1118 // Version number of last blacklist check |
1119 const char kExtensionBlacklistUpdateVersion[] = | 1119 const char kExtensionBlacklistUpdateVersion[] = |
1120 "extensions.blacklistupdate.version"; | 1120 "extensions.blacklistupdate.version"; |
1121 | 1121 |
1122 const char kExtensionSidebarWidth[] = "extensions.sidebar.width"; | 1122 const char kExtensionSidebarWidth[] = "extensions.sidebar.width"; |
1123 | 1123 |
| 1124 // Number of times the NTP4 informational bubble has been shown. |
| 1125 const char kNTP4IntroDisplayCount[] = "ntp.intro_display_count"; |
| 1126 |
1124 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1127 // New Tab Page URLs that should not be shown as most visited thumbnails. |
1125 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1128 const char kNTPMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
1126 | 1129 |
1127 // The URLs that have been pinned to the Most Visited section of the New Tab | 1130 // The URLs that have been pinned to the Most Visited section of the New Tab |
1128 // Page. | 1131 // Page. |
1129 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | 1132 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; |
1130 | 1133 |
1131 // Data downloaded from promo resource pages (JSON, RSS) to be used to | 1134 // Data downloaded from promo resource pages (JSON, RSS) to be used to |
1132 // dynamically deliver data for the new tab page. | 1135 // dynamically deliver data for the new tab page. |
1133 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; | 1136 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1464 // Whether user-specified handlers for protocols and content types can be | 1467 // Whether user-specified handlers for protocols and content types can be |
1465 // specified. | 1468 // specified. |
1466 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1469 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1467 | 1470 |
1468 // Integers that specify the policy refresh rate for device- and user-policy in | 1471 // Integers that specify the policy refresh rate for device- and user-policy in |
1469 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1472 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1470 // by the cloud policy subsystem. | 1473 // by the cloud policy subsystem. |
1471 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1474 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1472 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1475 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1473 } // namespace prefs | 1476 } // namespace prefs |
OLD | NEW |