| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is | 257 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is |
| 258 // to use Chromium's network stack to fetch, and V8 to evaluate. | 258 // to use Chromium's network stack to fetch, and V8 to evaluate. |
| 259 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver"; | 259 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver"; |
| 260 | 260 |
| 261 // Chrome will support prefetching of DNS information. Until this becomes | 261 // Chrome will support prefetching of DNS information. Until this becomes |
| 262 // the default, we'll provide a command line switch. | 262 // the default, we'll provide a command line switch. |
| 263 extern const wchar_t kDnsLogDetails[] = L"dns-log-details"; | 263 extern const wchar_t kDnsLogDetails[] = L"dns-log-details"; |
| 264 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable"; | 264 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable"; |
| 265 | 265 |
| 266 // A temporary switch before we implement the client certificate selection UI. |
| 267 // When an SSL server requests client authentication, select a client |
| 268 // certificate automatically. |
| 269 // WARNING: This switch has privacy issues because it reveals the user's |
| 270 // identity to any server that requests a client certificate without the |
| 271 // user's consent. |
| 272 extern const wchar_t kAutoSSLClientAuth[] = L"auto-ssl-client-auth"; |
| 273 |
| 266 // Enables support to debug printing subsystem. | 274 // Enables support to debug printing subsystem. |
| 267 const wchar_t kDebugPrint[] = L"debug-print"; | 275 const wchar_t kDebugPrint[] = L"debug-print"; |
| 268 | 276 |
| 269 // Prints the pages on the screen. | 277 // Prints the pages on the screen. |
| 270 const wchar_t kPrint[] = L"print"; | 278 const wchar_t kPrint[] = L"print"; |
| 271 | 279 |
| 272 // Allow initialization of all activex controls. This is only to help website | 280 // Allow initialization of all activex controls. This is only to help website |
| 273 // developers test their controls to see if they are compatible in Chrome. | 281 // developers test their controls to see if they are compatible in Chrome. |
| 274 // Note there's a duplicate value in activex_shared.cc (to avoid | 282 // Note there's a duplicate value in activex_shared.cc (to avoid |
| 275 // dependency on chrome module). Please change both locations at the same time. | 283 // dependency on chrome module). Please change both locations at the same time. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 // OS hard limits. Useful for testing that file descriptor exhaustion is handled | 516 // OS hard limits. Useful for testing that file descriptor exhaustion is handled |
| 509 // gracefully. | 517 // gracefully. |
| 510 const wchar_t kFileDescriptorLimit[] = L"file-descriptor-limit"; | 518 const wchar_t kFileDescriptorLimit[] = L"file-descriptor-limit"; |
| 511 | 519 |
| 512 // On Windows, converts the page to the currently-installed monitor profile. | 520 // On Windows, converts the page to the currently-installed monitor profile. |
| 513 // This does NOT enable color management for images. The source is still assumed | 521 // This does NOT enable color management for images. The source is still assumed |
| 514 // to be sRGB. | 522 // to be sRGB. |
| 515 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile"; | 523 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile"; |
| 516 | 524 |
| 517 } // namespace switches | 525 } // namespace switches |
| OLD | NEW |