| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1254 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1255 // Whitelist containing servers for which Integrated Authentication is enabled. | 1255 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1256 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1256 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1257 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1257 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1258 // with. | 1258 // with. |
| 1259 const char kAuthNegotiateDelegateWhitelist[] = | 1259 const char kAuthNegotiateDelegateWhitelist[] = |
| 1260 "auth.negotiate_delegate_whitelist"; | 1260 "auth.negotiate_delegate_whitelist"; |
| 1261 // String that specifies the name of a custom GSSAPI library to load. | 1261 // String that specifies the name of a custom GSSAPI library to load. |
| 1262 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1262 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1263 | 1263 |
| 1264 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1265 // domain sub-content requests. |
| 1266 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1267 |
| 1264 #if defined(OS_CHROMEOS) | 1268 #if defined(OS_CHROMEOS) |
| 1265 // Dictionary for transient storage of settings that should go into signed | 1269 // Dictionary for transient storage of settings that should go into signed |
| 1266 // settings storage before owner has been assigned. | 1270 // settings storage before owner has been assigned. |
| 1267 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1271 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
| 1268 | 1272 |
| 1269 // The hardware keyboard layout of the device. This should look like | 1273 // The hardware keyboard layout of the device. This should look like |
| 1270 // "xkb:us::eng". | 1274 // "xkb:us::eng". |
| 1271 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1275 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
| 1272 | 1276 |
| 1273 // An integer pref which shows number of times carrier deal promo | 1277 // An integer pref which shows number of times carrier deal promo |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 "custom_handlers.registered_protocol_handlers"; | 1362 "custom_handlers.registered_protocol_handlers"; |
| 1359 | 1363 |
| 1360 // List of protocol handlers the user has requested not to be asked about again. | 1364 // List of protocol handlers the user has requested not to be asked about again. |
| 1361 const char kIgnoredProtocolHandlers[] = | 1365 const char kIgnoredProtocolHandlers[] = |
| 1362 "custom_handlers.ignored_protocol_handlers"; | 1366 "custom_handlers.ignored_protocol_handlers"; |
| 1363 | 1367 |
| 1364 // Whether user-specified handlers for protocols and content types can be | 1368 // Whether user-specified handlers for protocols and content types can be |
| 1365 // specified. | 1369 // specified. |
| 1366 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1370 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1367 } // namespace prefs | 1371 } // namespace prefs |
| OLD | NEW |