| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1191 | 1191 |
| 1192 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1192 // The URL from which the GAIA profile picture was downloaded. This is cached to |
| 1193 // prevent the same picture from being downloaded multiple times. | 1193 // prevent the same picture from being downloaded multiple times. |
| 1194 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; | 1194 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
| 1195 | 1195 |
| 1196 // Integer that specifies the number of times that we have shown the upgrade | 1196 // Integer that specifies the number of times that we have shown the upgrade |
| 1197 // tutorial card in the avatar menu bubble. | 1197 // tutorial card in the avatar menu bubble. |
| 1198 const char kProfileAvatarTutorialShown[] = | 1198 const char kProfileAvatarTutorialShown[] = |
| 1199 "profile.avatar_bubble_tutorial_shown"; | 1199 "profile.avatar_bubble_tutorial_shown"; |
| 1200 | 1200 |
| 1201 // Boolean that specifies if the user has already dismissed the right-click user | |
| 1202 // switching tutorial. | |
| 1203 const char kProfileAvatarRightClickTutorialDismissed[] = | |
| 1204 "profile.avatar_bubble_right_click_tutorial_dismissed"; | |
| 1205 | |
| 1206 // Indicates if we've already shown a notification that high contrast | 1201 // Indicates if we've already shown a notification that high contrast |
| 1207 // mode is on, recommending high-contrast extensions and themes. | 1202 // mode is on, recommending high-contrast extensions and themes. |
| 1208 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; | 1203 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; |
| 1209 | 1204 |
| 1210 // Boolean controlling whether printing is enabled. | 1205 // Boolean controlling whether printing is enabled. |
| 1211 const char kPrintingEnabled[] = "printing.enabled"; | 1206 const char kPrintingEnabled[] = "printing.enabled"; |
| 1212 | 1207 |
| 1213 // Boolean controlling whether print preview is disabled. | 1208 // Boolean controlling whether print preview is disabled. |
| 1214 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1209 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
| 1215 | 1210 |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2526 // settings. | 2521 // settings. |
| 2527 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = | 2522 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = |
| 2528 "settings_reset_prompt.last_triggered_for_startup_urls"; | 2523 "settings_reset_prompt.last_triggered_for_startup_urls"; |
| 2529 | 2524 |
| 2530 // Timestamp of the last time the settings reset prompt was shown during the | 2525 // Timestamp of the last time the settings reset prompt was shown during the |
| 2531 // current prompt wave asking the user if they want to restore their homepage. | 2526 // current prompt wave asking the user if they want to restore their homepage. |
| 2532 const char kSettingsResetPromptLastTriggeredForHomepage[] = | 2527 const char kSettingsResetPromptLastTriggeredForHomepage[] = |
| 2533 "settings_reset_prompt.last_triggered_for_homepage"; | 2528 "settings_reset_prompt.last_triggered_for_homepage"; |
| 2534 | 2529 |
| 2535 } // namespace prefs | 2530 } // namespace prefs |
| OLD | NEW |