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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1099 | 1099 |
1100 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1100 // The URL from which the GAIA profile picture was downloaded. This is cached to |
1101 // prevent the same picture from being downloaded multiple times. | 1101 // prevent the same picture from being downloaded multiple times. |
1102 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; | 1102 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
1103 | 1103 |
1104 // Integer that specifies the number of times that we have shown the upgrade | 1104 // Integer that specifies the number of times that we have shown the upgrade |
1105 // tutorial card in the avatar menu bubble. | 1105 // tutorial card in the avatar menu bubble. |
1106 const char kProfileAvatarTutorialShown[] = | 1106 const char kProfileAvatarTutorialShown[] = |
1107 "profile.avatar_bubble_tutorial_shown"; | 1107 "profile.avatar_bubble_tutorial_shown"; |
1108 | 1108 |
| 1109 // Boolean that specifies if the user has already dismissed the right-click user |
| 1110 // switching tutorial. |
| 1111 const char kProfileAvatarRightClickTutorialDismissed[] = |
| 1112 "profile.avatar_bubble_right_click_tutorial_dismissed"; |
| 1113 |
1109 // Indicates if we've already shown a notification that high contrast | 1114 // Indicates if we've already shown a notification that high contrast |
1110 // mode is on, recommending high-contrast extensions and themes. | 1115 // mode is on, recommending high-contrast extensions and themes. |
1111 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; | 1116 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; |
1112 | 1117 |
1113 // Boolean controlling whether printing is enabled. | 1118 // Boolean controlling whether printing is enabled. |
1114 const char kPrintingEnabled[] = "printing.enabled"; | 1119 const char kPrintingEnabled[] = "printing.enabled"; |
1115 | 1120 |
1116 // Boolean controlling whether print preview is disabled. | 1121 // Boolean controlling whether print preview is disabled. |
1117 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1122 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
1118 | 1123 |
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2242 // (name and a list of clients that registered the whitelist). | 2247 // (name and a list of clients that registered the whitelist). |
2243 const char kRegisteredSupervisedUserWhitelists[] = | 2248 const char kRegisteredSupervisedUserWhitelists[] = |
2244 "supervised_users.whitelists"; | 2249 "supervised_users.whitelists"; |
2245 | 2250 |
2246 #if defined(ENABLE_EXTENSIONS) | 2251 #if defined(ENABLE_EXTENSIONS) |
2247 // Policy that indicates how to handle animated images. | 2252 // Policy that indicates how to handle animated images. |
2248 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2253 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2249 #endif | 2254 #endif |
2250 | 2255 |
2251 } // namespace prefs | 2256 } // namespace prefs |
OLD | NEW |