| 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 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1630 | 1630 |
| 1631 // The "hide this" link text for the NTP web store promo. | 1631 // The "hide this" link text for the NTP web store promo. |
| 1632 const char kNtpWebStorePromoExpire[] = "ntp.webstorepromo.expire"; | 1632 const char kNtpWebStorePromoExpire[] = "ntp.webstorepromo.expire"; |
| 1633 | 1633 |
| 1634 // Specifies what users should maximize the NTP web store promo. | 1634 // Specifies what users should maximize the NTP web store promo. |
| 1635 const char kNtpWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; | 1635 const char kNtpWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; |
| 1636 | 1636 |
| 1637 // Customized app page names that appear on the New Tab Page. | 1637 // Customized app page names that appear on the New Tab Page. |
| 1638 const char kNtpAppPageNames[] = "ntp.app_page_names"; | 1638 const char kNtpAppPageNames[] = "ntp.app_page_names"; |
| 1639 | 1639 |
| 1640 // Whether to show the apps page on the NTP. |
| 1641 const char kNtpShouldShowAppsPage[] = "ntp.should_show_apps_page"; |
| 1642 |
| 1640 const char kDevToolsDisabled[] = "devtools.disabled"; | 1643 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1641 | 1644 |
| 1642 // A string specifying the dock location (either 'bottom' or 'right'). | 1645 // A string specifying the dock location (either 'bottom' or 'right'). |
| 1643 const char kDevToolsDockSide[] = "devtools.dock_side"; | 1646 const char kDevToolsDockSide[] = "devtools.dock_side"; |
| 1644 | 1647 |
| 1645 // Maps of files edited locally using DevTools. | 1648 // Maps of files edited locally using DevTools. |
| 1646 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1649 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
| 1647 | 1650 |
| 1648 // List of file system paths added in DevTools. | 1651 // List of file system paths added in DevTools. |
| 1649 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; | 1652 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2229 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2232 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2230 | 2233 |
| 2231 #if defined(OS_CHROMEOS) | 2234 #if defined(OS_CHROMEOS) |
| 2232 // The RLZ brand code, if enabled. | 2235 // The RLZ brand code, if enabled. |
| 2233 const char kRLZBrand[] = "rlz.brand"; | 2236 const char kRLZBrand[] = "rlz.brand"; |
| 2234 // Whether RLZ pings are disabled. | 2237 // Whether RLZ pings are disabled. |
| 2235 const char kRLZDisabled[] = "rlz.disabled"; | 2238 const char kRLZDisabled[] = "rlz.disabled"; |
| 2236 #endif | 2239 #endif |
| 2237 | 2240 |
| 2238 } // namespace prefs | 2241 } // namespace prefs |
| OLD | NEW |