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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 // Page. | 1235 // Page. |
1236 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | 1236 const char kNTPMostVisitedPinnedURLs[] = "ntp.pinned_urls"; |
1237 | 1237 |
1238 // Data downloaded from promo resource pages (JSON, RSS) to be used to | 1238 // Data downloaded from promo resource pages (JSON, RSS) to be used to |
1239 // dynamically deliver data for the new tab page. | 1239 // dynamically deliver data for the new tab page. |
1240 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; | 1240 const char kNTPPromoResourceCache[] = "ntp.promo_resource_cache"; |
1241 | 1241 |
1242 // Last time of update of promo_resource_cache. | 1242 // Last time of update of promo_resource_cache. |
1243 const char kNTPPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1243 const char kNTPPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
1244 | 1244 |
| 1245 // Is user logged into G+ (used for G+ extension promo). |
| 1246 const char kNTPPromoIsLoggedInToPlus[] = "ntp.promo_is_logged_in_to_plus"; |
| 1247 |
| 1248 // Bit mask used to decide when to show the NTP Promo. |
| 1249 const char kNTPPromoFeatureMask[] = "ntp.promo_feature_mask"; |
| 1250 |
1245 // Serves promo resources for the NTP. | 1251 // Serves promo resources for the NTP. |
1246 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; | 1252 const char kNTPPromoResourceServer[] = "ntp.web_resource_server"; |
1247 | 1253 |
1248 // Serves tips for the NTP. | 1254 // Serves tips for the NTP. |
1249 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; | 1255 const char kNTPTipsResourceServer[] = "ntp.tips_resource_server"; |
1250 | 1256 |
1251 // Serves dates to determine display of elements on the NTP. | 1257 // Serves dates to determine display of elements on the NTP. |
1252 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; | 1258 const char kNTPDateResourceServer[] = "ntp.date_resource_server"; |
1253 | 1259 |
1254 // Which bookmarks folder should be visible on the new tab page v4. | 1260 // Which bookmarks folder should be visible on the new tab page v4. |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1632 | 1638 |
1633 // String that represents the recovery component last downloaded version. This | 1639 // String that represents the recovery component last downloaded version. This |
1634 // takes the usual 'a.b.c.d' notation. | 1640 // takes the usual 'a.b.c.d' notation. |
1635 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1641 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1636 | 1642 |
1637 // String that stores the component updater last known state. This is used for | 1643 // String that stores the component updater last known state. This is used for |
1638 // troubleshooting. | 1644 // troubleshooting. |
1639 const char kComponentUpdaterState[] = "component_updater.state"; | 1645 const char kComponentUpdaterState[] = "component_updater.state"; |
1640 | 1646 |
1641 } // namespace prefs | 1647 } // namespace prefs |
OLD | NEW |