| 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/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 const char kPrintingEnabled[] = "printing.enabled"; | 1150 const char kPrintingEnabled[] = "printing.enabled"; |
| 1151 | 1151 |
| 1152 // Boolean controlling whether print preview is disabled. | 1152 // Boolean controlling whether print preview is disabled. |
| 1153 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; | 1153 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; |
| 1154 | 1154 |
| 1155 // A pref holding the value of the policy used to control default destination | 1155 // A pref holding the value of the policy used to control default destination |
| 1156 // selection in the Print Preview. See DefaultPrinterSelection policy. | 1156 // selection in the Print Preview. See DefaultPrinterSelection policy. |
| 1157 const char kPrintPreviewDefaultDestinationSelectionRules[] = | 1157 const char kPrintPreviewDefaultDestinationSelectionRules[] = |
| 1158 "printing.default_destination_selection_rules"; | 1158 "printing.default_destination_selection_rules"; |
| 1159 | 1159 |
| 1160 #if defined(OS_CHROMEOS) |
| 1161 // List of all printers that the user has configured. |
| 1162 const char kPrintingDevices[] = "printing.devices"; |
| 1163 #endif // OS_CHROMEOS |
| 1164 |
| 1160 // An integer pref specifying the fallback behavior for sites outside of content | 1165 // An integer pref specifying the fallback behavior for sites outside of content |
| 1161 // packs. One of: | 1166 // packs. One of: |
| 1162 // 0: Allow (does nothing) | 1167 // 0: Allow (does nothing) |
| 1163 // 1: Warn. | 1168 // 1: Warn. |
| 1164 // 2: Block. | 1169 // 2: Block. |
| 1165 const char kDefaultSupervisedUserFilteringBehavior[] = | 1170 const char kDefaultSupervisedUserFilteringBehavior[] = |
| 1166 "profile.managed.default_filtering_behavior"; | 1171 "profile.managed.default_filtering_behavior"; |
| 1167 | 1172 |
| 1168 // Whether this user is permitted to create supervised users. | 1173 // Whether this user is permitted to create supervised users. |
| 1169 const char kSupervisedUserCreationAllowed[] = | 1174 const char kSupervisedUserCreationAllowed[] = |
| (...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2247 #endif | 2252 #endif |
| 2248 | 2253 |
| 2249 // The base64-encoded representation of the public key to use to validate origin | 2254 // The base64-encoded representation of the public key to use to validate origin |
| 2250 // trial token signatures. | 2255 // trial token signatures. |
| 2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2256 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2252 | 2257 |
| 2253 // A list of origin trial features to disable by policy. | 2258 // A list of origin trial features to disable by policy. |
| 2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2259 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2255 | 2260 |
| 2256 } // namespace prefs | 2261 } // namespace prefs |
| OLD | NEW |