| 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 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 // Page. | 1259 // Page. |
| 1260 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | 1260 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; |
| 1261 | 1261 |
| 1262 // Data downloaded from promo resource pages (JSON, RSS) to be used to | 1262 // Data downloaded from promo resource pages (JSON, RSS) to be used to |
| 1263 // dynamically deliver data for the new tab page. | 1263 // dynamically deliver data for the new tab page. |
| 1264 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; | 1264 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; |
| 1265 | 1265 |
| 1266 // Last time of update of promo_resource_cache. | 1266 // Last time of update of promo_resource_cache. |
| 1267 const char kNTPPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1267 const char kNTPPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
| 1268 | 1268 |
| 1269 // Is user logged into G+ (used for G+ extension promo). |
| 1270 const char kNTPPromoIsLoggedInToPlus[] = "ntp.promo_is_logged_in_to_plus"; |
| 1271 |
| 1272 // Bit mask used to decide when to show the NTP Promo. |
| 1273 const char kNTPPromoFeatureMask[] = "ntp.promo_feature_mask"; |
| 1274 |
| 1269 // Serves promo resources for the NTP. | 1275 // Serves promo resources for the NTP. |
| 1270 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; | 1276 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; |
| 1271 | 1277 |
| 1272 // Serves tips for the NTP. | 1278 // Serves tips for the NTP. |
| 1273 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; | 1279 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; |
| 1274 | 1280 |
| 1275 // Serves dates to determine display of elements on the NTP. | 1281 // Serves dates to determine display of elements on the NTP. |
| 1276 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; | 1282 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; |
| 1277 | 1283 |
| 1278 // Which bookmarks folder should be visible on the new tab page v4. | 1284 // Which bookmarks folder should be visible on the new tab page v4. |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 | 1669 |
| 1664 // String that represents the recovery component last downloaded version. This | 1670 // String that represents the recovery component last downloaded version. This |
| 1665 // takes the usual 'a.b.c.d' notation. | 1671 // takes the usual 'a.b.c.d' notation. |
| 1666 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1672 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1667 | 1673 |
| 1668 // String that stores the component updater last known state. This is used for | 1674 // String that stores the component updater last known state. This is used for |
| 1669 // troubleshooting. | 1675 // troubleshooting. |
| 1670 const char kComponentUpdaterState[] = "component_updater.state"; | 1676 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1671 | 1677 |
| 1672 } // namespace prefs | 1678 } // namespace prefs |
| OLD | NEW |