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/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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 345 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
346 | 346 |
347 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 347 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
348 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 348 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
349 | 349 |
350 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 350 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
351 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 351 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
352 // for more background. | 352 // for more background. |
353 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 353 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
354 | 354 |
| 355 // Enables TLS cached info extension. |
| 356 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; |
| 357 |
355 // This flag enables UI for clearing server data. Temporarily in place | 358 // This flag enables UI for clearing server data. Temporarily in place |
356 // until there's a server endpoint deployed. | 359 // until there's a server endpoint deployed. |
357 const char kEnableClearServerData[] = "enable-clear-server-data"; | 360 const char kEnableClearServerData[] = "enable-clear-server-data"; |
358 | 361 |
359 // Enable click-to-play for blocked plug-ins. | 362 // Enable click-to-play for blocked plug-ins. |
360 const char kEnableClickToPlay[] = "enable-click-to-play"; | 363 const char kEnableClickToPlay[] = "enable-click-to-play"; |
361 | 364 |
362 // This applies only when the process type is "service". Enables the | 365 // This applies only when the process type is "service". Enables the |
363 // Cloud Print Proxy component within the service process. | 366 // Cloud Print Proxy component within the service process. |
364 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 367 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 // Enable panels (always on-top docked pop-up windows). | 450 // Enable panels (always on-top docked pop-up windows). |
448 const char kEnablePanels[] = "enable-panels"; | 451 const char kEnablePanels[] = "enable-panels"; |
449 | 452 |
450 // Enable speculative TCP/IP preconnection. | 453 // Enable speculative TCP/IP preconnection. |
451 const char kEnablePreconnect[] = "enable-preconnect"; | 454 const char kEnablePreconnect[] = "enable-preconnect"; |
452 | 455 |
453 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 456 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
454 // parameter to indicate if the provider should be the default. | 457 // parameter to indicate if the provider should be the default. |
455 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 458 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
456 | 459 |
457 // Enables 0-RTT HTTPS handshakes. | |
458 const char kEnableSnapStart[] = "enable-snap-start"; | |
459 | |
460 // Enable syncing browser data to a Google Account. | 460 // Enable syncing browser data to a Google Account. |
461 const char kEnableSync[] = "enable-sync"; | 461 const char kEnableSync[] = "enable-sync"; |
462 | 462 |
463 // Enable syncing browser autofill. | 463 // Enable syncing browser autofill. |
464 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 464 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
465 | 465 |
466 // Enable sync encryption options. | 466 // Enable sync encryption options. |
467 const char kEnableSyncEncryption[] = "enable-sync-encryption"; | 467 const char kEnableSyncEncryption[] = "enable-sync-encryption"; |
468 | 468 |
469 // Enable syncing browser sessions. | 469 // Enable syncing browser sessions. |
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 | 1152 |
1153 // ----------------------------------------------------------------------------- | 1153 // ----------------------------------------------------------------------------- |
1154 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1154 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1155 // | 1155 // |
1156 // You were going to just dump your switches here, weren't you? Instead, | 1156 // You were going to just dump your switches here, weren't you? Instead, |
1157 // please put them in alphabetical order above, or in order inside the | 1157 // please put them in alphabetical order above, or in order inside the |
1158 // appropriate ifdef at the bottom. The order should match the header. | 1158 // appropriate ifdef at the bottom. The order should match the header. |
1159 // ----------------------------------------------------------------------------- | 1159 // ----------------------------------------------------------------------------- |
1160 | 1160 |
1161 } // namespace switches | 1161 } // namespace switches |
OLD | NEW |