| 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 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1987 const char kNetworkProfileLastWarningTime[] = | 1982 const char kNetworkProfileLastWarningTime[] = |
| 1988 "network_profile.last_warning_time"; | 1983 "network_profile.last_warning_time"; |
| 1989 | 1984 |
| 1990 #if defined(OS_MACOSX) | 1985 #if defined(OS_MACOSX) |
| 1991 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1986 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1992 const char kMacLeopardObsoleteInfobarLastShown[] = | 1987 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1993 "mac_105_obsolete_infobar_last_shown"; | 1988 "mac_105_obsolete_infobar_last_shown"; |
| 1994 #endif // defined(OS_MACOSX) | 1989 #endif // defined(OS_MACOSX) |
| 1995 | 1990 |
| 1996 } // namespace prefs | 1991 } // namespace prefs |
| OLD | NEW |