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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; | 362 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; |
363 | 363 |
364 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 364 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
365 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 365 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
366 | 366 |
367 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 367 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
368 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 368 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
369 // for more background. | 369 // for more background. |
370 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 370 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
371 | 371 |
| 372 // Enables TLS cached info extension. |
| 373 const char kEnableCachedInfo[] = "enable-ssl-cached-info"; |
| 374 |
372 // This flag enables UI for clearing server data. Temporarily in place | 375 // This flag enables UI for clearing server data. Temporarily in place |
373 // until there's a server endpoint deployed. | 376 // until there's a server endpoint deployed. |
374 const char kEnableClearServerData[] = "enable-clear-server-data"; | 377 const char kEnableClearServerData[] = "enable-clear-server-data"; |
375 | 378 |
376 // Enable click-to-play for blocked plug-ins. | 379 // Enable click-to-play for blocked plug-ins. |
377 const char kEnableClickToPlay[] = "enable-click-to-play"; | 380 const char kEnableClickToPlay[] = "enable-click-to-play"; |
378 | 381 |
379 // This applies only when the process type is "service". Enables the | 382 // This applies only when the process type is "service". Enables the |
380 // Cloud Print Proxy component within the service process. | 383 // Cloud Print Proxy component within the service process. |
381 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 384 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1175 | 1178 |
1176 // ----------------------------------------------------------------------------- | 1179 // ----------------------------------------------------------------------------- |
1177 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1180 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1178 // | 1181 // |
1179 // You were going to just dump your switches here, weren't you? Instead, | 1182 // You were going to just dump your switches here, weren't you? Instead, |
1180 // please put them in alphabetical order above, or in order inside the | 1183 // please put them in alphabetical order above, or in order inside the |
1181 // appropriate ifdef at the bottom. The order should match the header. | 1184 // appropriate ifdef at the bottom. The order should match the header. |
1182 // ----------------------------------------------------------------------------- | 1185 // ----------------------------------------------------------------------------- |
1183 | 1186 |
1184 } // namespace switches | 1187 } // namespace switches |
OLD | NEW |