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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1137 | 1137 |
1138 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1138 // The URL from which the GAIA profile picture was downloaded. This is cached to |
1139 // prevent the same picture from being downloaded multiple times. | 1139 // prevent the same picture from being downloaded multiple times. |
1140 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; | 1140 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
1141 | 1141 |
1142 // Integer that specifies the number of times that we have shown the upgrade | 1142 // Integer that specifies the number of times that we have shown the upgrade |
1143 // tutorial card in the avatar menu bubble. | 1143 // tutorial card in the avatar menu bubble. |
1144 const char kProfileAvatarTutorialShown[] = | 1144 const char kProfileAvatarTutorialShown[] = |
1145 "profile.avatar_bubble_tutorial_shown"; | 1145 "profile.avatar_bubble_tutorial_shown"; |
1146 | 1146 |
| 1147 // Boolean that specifies whether we have shown the user manager tutorial. |
| 1148 const char kProfileUserManagerTutorialShown[] = |
| 1149 "profile.user_manager_tutorial_shown"; |
| 1150 |
1147 // Indicates if we've already shown a notification that high contrast | 1151 // Indicates if we've already shown a notification that high contrast |
1148 // mode is on, recommending high-contrast extensions and themes. | 1152 // mode is on, recommending high-contrast extensions and themes. |
1149 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; | 1153 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; |
1150 | 1154 |
1151 // Boolean controlling whether printing is enabled. | 1155 // Boolean controlling whether printing is enabled. |
1152 const char kPrintingEnabled[] = "printing.enabled"; | 1156 const char kPrintingEnabled[] = "printing.enabled"; |
1153 | 1157 |
1154 // Boolean controlling whether print preview is disabled. | 1158 // Boolean controlling whether print preview is disabled. |
1155 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1159 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
1156 | 1160 |
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2312 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2316 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2313 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2317 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2314 // title or an empty string if the bookmark node was removed. | 2318 // title or an empty string if the bookmark node was removed. |
2315 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2319 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2316 #endif | 2320 #endif |
2317 | 2321 |
2318 // Whether DNS Quick Check is disabled in proxy resolution. | 2322 // Whether DNS Quick Check is disabled in proxy resolution. |
2319 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2323 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2320 | 2324 |
2321 } // namespace prefs | 2325 } // namespace prefs |
OLD | NEW |