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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 // special promos. | 1275 // special promos. |
1276 const char kNTPPromoGroup[] = "ntp.promo_group"; | 1276 const char kNTPPromoGroup[] = "ntp.promo_group"; |
1277 | 1277 |
1278 // Amount of time each promo group should be shown a promo that is being slowly | 1278 // Amount of time each promo group should be shown a promo that is being slowly |
1279 // rolled out, in hours. | 1279 // rolled out, in hours. |
1280 const char kNTPPromoGroupTimeSlice[] = "ntp.promo_group_timeslice"; | 1280 const char kNTPPromoGroupTimeSlice[] = "ntp.promo_group_timeslice"; |
1281 | 1281 |
1282 // Number of groups to roll out this promo to. | 1282 // Number of groups to roll out this promo to. |
1283 const char kNTPPromoGroupMax[] = "ntp.promo_group_max"; | 1283 const char kNTPPromoGroupMax[] = "ntp.promo_group_max"; |
1284 | 1284 |
| 1285 // Number of views of this promo. |
| 1286 const char kNTPPromoViews[] = "ntp.promo_views"; |
| 1287 |
| 1288 // Max number of views of this promo. |
| 1289 const char kNTPPromoViewsMax[] = "ntp.promo_views_max"; |
| 1290 |
1285 // Promo line from server. | 1291 // Promo line from server. |
1286 const char kNTPPromoLine[] = "ntp.promo_line"; | 1292 const char kNTPPromoLine[] = "ntp.promo_line"; |
1287 | 1293 |
1288 // Dates between which the NTP should show a promotional line downloaded | 1294 // Dates between which the NTP should show a promotional line downloaded |
1289 // from the promo server. | 1295 // from the promo server. |
1290 const char kNTPPromoStart[] = "ntp.promo_start"; | 1296 const char kNTPPromoStart[] = "ntp.promo_start"; |
1291 const char kNTPPromoEnd[] = "ntp.promo_end"; | 1297 const char kNTPPromoEnd[] = "ntp.promo_end"; |
1292 | 1298 |
1293 // Boolean indicating whether the web store is active for the current locale. | 1299 // Boolean indicating whether the web store is active for the current locale. |
1294 const char kNTPWebStoreEnabled[] = "ntp.webstore_enabled"; | 1300 const char kNTPWebStoreEnabled[] = "ntp.webstore_enabled"; |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 // specified. | 1590 // specified. |
1585 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1591 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1586 | 1592 |
1587 // Integers that specify the policy refresh rate for device- and user-policy in | 1593 // Integers that specify the policy refresh rate for device- and user-policy in |
1588 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1594 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1589 // by the cloud policy subsystem. | 1595 // by the cloud policy subsystem. |
1590 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1596 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1591 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1597 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1592 | 1598 |
1593 } // namespace prefs | 1599 } // namespace prefs |
OLD | NEW |