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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 | 967 |
968 // Whether to enable hyperlink auditing ("<a ping>"). | 968 // Whether to enable hyperlink auditing ("<a ping>"). |
969 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 969 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
970 | 970 |
971 // Whether to enable sending referrers. | 971 // Whether to enable sending referrers. |
972 const char kEnableReferrers[] = "enable_referrers"; | 972 const char kEnableReferrers[] = "enable_referrers"; |
973 | 973 |
974 // Boolean to enable reporting memory info to page. | 974 // Boolean to enable reporting memory info to page. |
975 const char kEnableMemoryInfo[] = "enable_memory_info"; | 975 const char kEnableMemoryInfo[] = "enable_memory_info"; |
976 | 976 |
977 #if defined(OS_MACOSX) | |
978 // Whether presentation mode is enabled for fullscreen (used on Lion only). | |
979 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; | |
980 #endif | |
981 | |
982 // Boolean that specifies whether to import bookmarks from the default browser | 977 // Boolean that specifies whether to import bookmarks from the default browser |
983 // on first run. | 978 // on first run. |
984 const char kImportBookmarks[] = "import_bookmarks"; | 979 const char kImportBookmarks[] = "import_bookmarks"; |
985 | 980 |
986 // Boolean that specifies whether to import the browsing history from the | 981 // Boolean that specifies whether to import the browsing history from the |
987 // default browser on first run. | 982 // default browser on first run. |
988 const char kImportHistory[] = "import_history"; | 983 const char kImportHistory[] = "import_history"; |
989 | 984 |
990 // Boolean that specifies whether to import the homepage from the default | 985 // Boolean that specifies whether to import the homepage from the default |
991 // browser on first run. | 986 // browser on first run. |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1990 const char kNetworkProfileLastWarningTime[] = | 1985 const char kNetworkProfileLastWarningTime[] = |
1991 "network_profile.last_warning_time"; | 1986 "network_profile.last_warning_time"; |
1992 | 1987 |
1993 #if defined(OS_MACOSX) | 1988 #if defined(OS_MACOSX) |
1994 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1989 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1995 const char kMacLeopardObsoleteInfobarLastShown[] = | 1990 const char kMacLeopardObsoleteInfobarLastShown[] = |
1996 "mac_105_obsolete_infobar_last_shown"; | 1991 "mac_105_obsolete_infobar_last_shown"; |
1997 #endif // defined(OS_MACOSX) | 1992 #endif // defined(OS_MACOSX) |
1998 | 1993 |
1999 } // namespace prefs | 1994 } // namespace prefs |
OLD | NEW |