| 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 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 | 1119 |
| 1120 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1120 // The URL from which the GAIA profile picture was downloaded. This is cached to |
| 1121 // prevent the same picture from being downloaded multiple times. | 1121 // prevent the same picture from being downloaded multiple times. |
| 1122 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; | 1122 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
| 1123 | 1123 |
| 1124 // Integer that specifies the number of times that we have shown the upgrade | 1124 // Integer that specifies the number of times that we have shown the upgrade |
| 1125 // tutorial card in the avatar menu bubble. | 1125 // tutorial card in the avatar menu bubble. |
| 1126 const char kProfileAvatarTutorialShown[] = | 1126 const char kProfileAvatarTutorialShown[] = |
| 1127 "profile.avatar_bubble_tutorial_shown"; | 1127 "profile.avatar_bubble_tutorial_shown"; |
| 1128 | 1128 |
| 1129 // Boolean that specifies if the user has already dismissed the right-click user |
| 1130 // switching tutorial. |
| 1131 const char kProfileAvatarRightClickTutorialDismissed[] = |
| 1132 "profile.avatar_bubble_right_click_tutorial_dismissed"; |
| 1133 |
| 1129 // Indicates if we've already shown a notification that high contrast | 1134 // Indicates if we've already shown a notification that high contrast |
| 1130 // mode is on, recommending high-contrast extensions and themes. | 1135 // mode is on, recommending high-contrast extensions and themes. |
| 1131 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; | 1136 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; |
| 1132 | 1137 |
| 1133 // Boolean controlling whether printing is enabled. | 1138 // Boolean controlling whether printing is enabled. |
| 1134 const char kPrintingEnabled[] = "printing.enabled"; | 1139 const char kPrintingEnabled[] = "printing.enabled"; |
| 1135 | 1140 |
| 1136 // Boolean controlling whether print preview is disabled. | 1141 // Boolean controlling whether print preview is disabled. |
| 1137 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1142 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
| 1138 | 1143 |
| (...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2294 // (name and a list of clients that registered the whitelist). | 2299 // (name and a list of clients that registered the whitelist). |
| 2295 const char kRegisteredSupervisedUserWhitelists[] = | 2300 const char kRegisteredSupervisedUserWhitelists[] = |
| 2296 "supervised_users.whitelists"; | 2301 "supervised_users.whitelists"; |
| 2297 | 2302 |
| 2298 #if defined(ENABLE_EXTENSIONS) | 2303 #if defined(ENABLE_EXTENSIONS) |
| 2299 // Policy that indicates how to handle animated images. | 2304 // Policy that indicates how to handle animated images. |
| 2300 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2305 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2301 #endif | 2306 #endif |
| 2302 | 2307 |
| 2303 } // namespace prefs | 2308 } // namespace prefs |
| OLD | NEW |