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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 | 831 |
832 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 832 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
833 const char kDisable3DAPIs[] = "disable_3d_apis"; | 833 const char kDisable3DAPIs[] = "disable_3d_apis"; |
834 | 834 |
835 // Whether to enable hyperlink auditing ("<a ping>"). | 835 // Whether to enable hyperlink auditing ("<a ping>"). |
836 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 836 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
837 | 837 |
838 // Whether to enable sending referrers. | 838 // Whether to enable sending referrers. |
839 const char kEnableReferrers[] = "enable_referrers"; | 839 const char kEnableReferrers[] = "enable_referrers"; |
840 | 840 |
| 841 // Boolean to enable reporting memory info to page. |
| 842 const char kEnableMemoryInfo[] = "enable_memory_info"; |
| 843 |
841 #if defined(OS_MACOSX) | 844 #if defined(OS_MACOSX) |
842 // Whether presentation mode is enabled for fullscreen (used on Lion only). | 845 // Whether presentation mode is enabled for fullscreen (used on Lion only). |
843 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; | 846 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; |
844 #endif | 847 #endif |
845 | 848 |
846 // Boolean that specifies whether to import bookmarks from the default browser | 849 // Boolean that specifies whether to import bookmarks from the default browser |
847 // on first run. | 850 // on first run. |
848 const char kImportBookmarks[] = "import_bookmarks"; | 851 const char kImportBookmarks[] = "import_bookmarks"; |
849 | 852 |
850 // Boolean that specifies whether to import the browsing history from the | 853 // Boolean that specifies whether to import the browsing history from the |
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 | 1680 |
1678 // String that represents the recovery component last downloaded version. This | 1681 // String that represents the recovery component last downloaded version. This |
1679 // takes the usual 'a.b.c.d' notation. | 1682 // takes the usual 'a.b.c.d' notation. |
1680 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1681 | 1684 |
1682 // String that stores the component updater last known state. This is used for | 1685 // String that stores the component updater last known state. This is used for |
1683 // troubleshooting. | 1686 // troubleshooting. |
1684 const char kComponentUpdaterState[] = "component_updater.state"; | 1687 const char kComponentUpdaterState[] = "component_updater.state"; |
1685 | 1688 |
1686 } // namespace prefs | 1689 } // namespace prefs |
OLD | NEW |