| 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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 // Indicates if we've already shown a notification that high contrast | 1087 // Indicates if we've already shown a notification that high contrast |
| 1088 // mode is on, recommending high-contrast extensions and themes. | 1088 // mode is on, recommending high-contrast extensions and themes. |
| 1089 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; | 1089 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; |
| 1090 | 1090 |
| 1091 // Boolean controlling whether printing is enabled. | 1091 // Boolean controlling whether printing is enabled. |
| 1092 const char kPrintingEnabled[] = "printing.enabled"; | 1092 const char kPrintingEnabled[] = "printing.enabled"; |
| 1093 | 1093 |
| 1094 // Boolean controlling whether print preview is disabled. | 1094 // Boolean controlling whether print preview is disabled. |
| 1095 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1095 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
| 1096 | 1096 |
| 1097 // A pref holding the value of the policy used to control default destination |
| 1098 // selection in the Print Preview. See DefaultPrinterSelection policy. |
| 1099 const char kPrintPreviewDefaultDestinationSelectionRules[] = |
| 1100 "printing.default_destination_selection_rules"; |
| 1101 |
| 1097 // An integer pref specifying the fallback behavior for sites outside of content | 1102 // An integer pref specifying the fallback behavior for sites outside of content |
| 1098 // packs. One of: | 1103 // packs. One of: |
| 1099 // 0: Allow (does nothing) | 1104 // 0: Allow (does nothing) |
| 1100 // 1: Warn. | 1105 // 1: Warn. |
| 1101 // 2: Block. | 1106 // 2: Block. |
| 1102 const char kDefaultSupervisedUserFilteringBehavior[] = | 1107 const char kDefaultSupervisedUserFilteringBehavior[] = |
| 1103 "profile.managed.default_filtering_behavior"; | 1108 "profile.managed.default_filtering_behavior"; |
| 1104 | 1109 |
| 1105 // Whether this user is permitted to create supervised users. | 1110 // Whether this user is permitted to create supervised users. |
| 1106 const char kSupervisedUserCreationAllowed[] = | 1111 const char kSupervisedUserCreationAllowed[] = |
| (...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2194 "supervised_users.whitelists"; | 2199 "supervised_users.whitelists"; |
| 2195 | 2200 |
| 2196 #if defined(ENABLE_EXTENSIONS) | 2201 #if defined(ENABLE_EXTENSIONS) |
| 2197 // Policy that indicates how to handle animated images. | 2202 // Policy that indicates how to handle animated images. |
| 2198 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2203 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2199 #endif | 2204 #endif |
| 2200 | 2205 |
| 2201 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2206 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2202 | 2207 |
| 2203 } // namespace prefs | 2208 } // namespace prefs |
| OLD | NEW |