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