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