Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Side by Side Diff: chrome/common/pref_names.cc

Issue 6992081: Make --allow-cross-domain-auth-prompt equivalent to a preference. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; 1262 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
1263 // Whitelist containing servers for which Integrated Authentication is enabled. 1263 // Whitelist containing servers for which Integrated Authentication is enabled.
1264 const char kAuthServerWhitelist[] = "auth.server_whitelist"; 1264 const char kAuthServerWhitelist[] = "auth.server_whitelist";
1265 // Whitelist containing servers Chrome is allowed to do Kerberos delegation 1265 // Whitelist containing servers Chrome is allowed to do Kerberos delegation
1266 // with. 1266 // with.
1267 const char kAuthNegotiateDelegateWhitelist[] = 1267 const char kAuthNegotiateDelegateWhitelist[] =
1268 "auth.negotiate_delegate_whitelist"; 1268 "auth.negotiate_delegate_whitelist";
1269 // String that specifies the name of a custom GSSAPI library to load. 1269 // String that specifies the name of a custom GSSAPI library to load.
1270 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; 1270 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
1271 1271
1272 // Boolean that specifies whether to allow basic auth promptin on cross-
1273 // domain sub-content requests.
1274 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt";
1275
1272 #if defined(OS_CHROMEOS) 1276 #if defined(OS_CHROMEOS)
1273 // Dictionary for transient storage of settings that should go into signed 1277 // Dictionary for transient storage of settings that should go into signed
1274 // settings storage before owner has been assigned. 1278 // settings storage before owner has been assigned.
1275 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; 1279 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage";
1276 1280
1277 // The hardware keyboard layout of the device. This should look like 1281 // The hardware keyboard layout of the device. This should look like
1278 // "xkb:us::eng". 1282 // "xkb:us::eng".
1279 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; 1283 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard";
1280 #endif 1284 #endif
1281 1285
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698