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