| 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 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 | 1303 |
| 1304 // The button text for the NTP web store promo. | 1304 // The button text for the NTP web store promo. |
| 1305 const char kNTPWebStorePromoButton[] = "ntp.webstorepromo.button"; | 1305 const char kNTPWebStorePromoButton[] = "ntp.webstorepromo.button"; |
| 1306 | 1306 |
| 1307 // The button link for the NTP web store promo. | 1307 // The button link for the NTP web store promo. |
| 1308 const char kNTPWebStorePromoLink[] = "ntp.webstorepromo.link"; | 1308 const char kNTPWebStorePromoLink[] = "ntp.webstorepromo.link"; |
| 1309 | 1309 |
| 1310 // The image URL for the NTP web store promo logo. | 1310 // The image URL for the NTP web store promo logo. |
| 1311 const char kNTPWebStorePromoLogo[] = "ntp.webstorepromo.logo"; | 1311 const char kNTPWebStorePromoLogo[] = "ntp.webstorepromo.logo"; |
| 1312 | 1312 |
| 1313 // The original URL for the NTP web store promo logo. |
| 1314 const char kNTPWebStorePromoLogoOriginal[] = "ntp.webstorepromo.logo_original"; |
| 1315 |
| 1313 // The "hide this" link text for the NTP web store promo. | 1316 // The "hide this" link text for the NTP web store promo. |
| 1314 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire"; | 1317 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire"; |
| 1315 | 1318 |
| 1316 // Specifies what users should maximize the NTP web store promo. | 1319 // Specifies what users should maximize the NTP web store promo. |
| 1317 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; | 1320 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; |
| 1318 | 1321 |
| 1319 // Customized app page names that appear on the New Tab Page. | 1322 // Customized app page names that appear on the New Tab Page. |
| 1320 const char kNTPAppPageNames[] = "ntp.app_page_names"; | 1323 const char kNTPAppPageNames[] = "ntp.app_page_names"; |
| 1321 | 1324 |
| 1322 // When true, web store promos will never be shown. | 1325 // When true, web store promos will never be shown. |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 // specified. | 1579 // specified. |
| 1577 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1580 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1578 | 1581 |
| 1579 // Integers that specify the policy refresh rate for device- and user-policy in | 1582 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1580 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1583 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1581 // by the cloud policy subsystem. | 1584 // by the cloud policy subsystem. |
| 1582 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1585 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1583 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1586 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1584 | 1587 |
| 1585 } // namespace prefs | 1588 } // namespace prefs |
| OLD | NEW |