| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 // The original URL for the NTP web store promo logo. | 1412 // The original URL for the NTP web store promo logo. |
| 1413 const char kNTPWebStorePromoLogoSource[] = "ntp.webstorepromo.logo_source"; | 1413 const char kNTPWebStorePromoLogoSource[] = "ntp.webstorepromo.logo_source"; |
| 1414 | 1414 |
| 1415 // The "hide this" link text for the NTP web store promo. | 1415 // The "hide this" link text for the NTP web store promo. |
| 1416 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire"; | 1416 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire"; |
| 1417 | 1417 |
| 1418 // Specifies what users should maximize the NTP web store promo. | 1418 // Specifies what users should maximize the NTP web store promo. |
| 1419 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; | 1419 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; |
| 1420 | 1420 |
| 1421 // Customized app page names that appear on the New Tab Page. | 1421 // Customized app page names that appear on the New Tab Page. |
| 1422 const char kNTPAppPageNames[] = "ntp.app_page_names"; | 1422 const char kNTPAppsPageNames[] = "ntp.apps_page_names"; |
| 1423 const char kNTPAppsPageNamesOld[] = "ntp.app_page_names"; |
| 1423 | 1424 |
| 1424 // When true, web store promos will never be shown. | 1425 // When true, web store promos will never be shown. |
| 1425 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo"; | 1426 const char kNTPHideWebStorePromo[] = "ntp.hide_webstore_promo"; |
| 1426 | 1427 |
| 1427 const char kDevToolsDisabled[] = "devtools.disabled"; | 1428 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1428 | 1429 |
| 1429 // A boolean specifying whether dev tools window should be opened docked. | 1430 // A boolean specifying whether dev tools window should be opened docked. |
| 1430 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1431 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1431 | 1432 |
| 1432 // A string specifying the dock location (either 'bottom' or 'right'). | 1433 // A string specifying the dock location (either 'bottom' or 'right'). |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 | 1726 |
| 1726 // String that represents the recovery component last downloaded version. This | 1727 // String that represents the recovery component last downloaded version. This |
| 1727 // takes the usual 'a.b.c.d' notation. | 1728 // takes the usual 'a.b.c.d' notation. |
| 1728 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1729 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1729 | 1730 |
| 1730 // String that stores the component updater last known state. This is used for | 1731 // String that stores the component updater last known state. This is used for |
| 1731 // troubleshooting. | 1732 // troubleshooting. |
| 1732 const char kComponentUpdaterState[] = "component_updater.state"; | 1733 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1733 | 1734 |
| 1734 } // namespace prefs | 1735 } // namespace prefs |
| OLD | NEW |