| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 // Enable panels (always on-top docked pop-up windows). | 472 // Enable panels (always on-top docked pop-up windows). |
| 473 const char kEnablePanels[] = "enable-panels"; | 473 const char kEnablePanels[] = "enable-panels"; |
| 474 | 474 |
| 475 // Enable speculative TCP/IP preconnection. | 475 // Enable speculative TCP/IP preconnection. |
| 476 const char kEnablePreconnect[] = "enable-preconnect"; | 476 const char kEnablePreconnect[] = "enable-preconnect"; |
| 477 | 477 |
| 478 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 478 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
| 479 // parameter to indicate if the provider should be the default. | 479 // parameter to indicate if the provider should be the default. |
| 480 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 480 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
| 481 | 481 |
| 482 // Enables 0-RTT HTTPS handshakes. | 482 // Enables TLS cached info extension. |
| 483 const char kEnableSnapStart[] = "enable-snap-start"; | 483 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; |
| 484 | 484 |
| 485 // Enable syncing browser data to a Google Account. | 485 // Enable syncing browser data to a Google Account. |
| 486 const char kEnableSync[] = "enable-sync"; | 486 const char kEnableSync[] = "enable-sync"; |
| 487 | 487 |
| 488 // Enable syncing browser autofill. | 488 // Enable syncing browser autofill. |
| 489 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 489 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
| 490 | 490 |
| 491 // Enable sync encryption options. | 491 // Enable sync encryption options. |
| 492 const char kEnableSyncEncryption[] = "enable-sync-encryption"; | 492 const char kEnableSyncEncryption[] = "enable-sync-encryption"; |
| 493 | 493 |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1180 | 1180 |
| 1181 // ----------------------------------------------------------------------------- | 1181 // ----------------------------------------------------------------------------- |
| 1182 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1182 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1183 // | 1183 // |
| 1184 // You were going to just dump your switches here, weren't you? Instead, | 1184 // You were going to just dump your switches here, weren't you? Instead, |
| 1185 // please put them in alphabetical order above, or in order inside the | 1185 // please put them in alphabetical order above, or in order inside the |
| 1186 // appropriate ifdef at the bottom. The order should match the header. | 1186 // appropriate ifdef at the bottom. The order should match the header. |
| 1187 // ----------------------------------------------------------------------------- | 1187 // ----------------------------------------------------------------------------- |
| 1188 | 1188 |
| 1189 } // namespace switches | 1189 } // namespace switches |
| OLD | NEW |