Chromium Code Reviews| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 368 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; | 368 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; |
| 369 | 369 |
| 370 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 370 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
| 371 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 371 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
| 372 | 372 |
| 373 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 373 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
| 374 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 374 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| 375 // for more background. | 375 // for more background. |
| 376 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 376 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 377 | 377 |
| 378 // Enables TLS cached info extension | |
|
wtc
2011/06/03 22:56:55
Nit: add a period at the end of this comment. Our
rkn
2011/06/04 20:50:19
Done.
| |
| 379 const char kEnableCachedInfo[] = "enable-cached-info"; | |
|
wtc
2011/06/03 22:56:55
Please name this variable and option with SSL:
c
rkn
2011/06/04 20:50:19
Done.
| |
| 380 | |
| 378 // At this point, even if client-side phishing detection is enabled we will not, | 381 // At this point, even if client-side phishing detection is enabled we will not, |
| 379 // by default, display an interstitial if we detected a phishing site. Once | 382 // by default, display an interstitial if we detected a phishing site. Once |
| 380 // we are confident that the false-positive rate is as low as expected we can | 383 // we are confident that the false-positive rate is as low as expected we can |
| 381 // remove this flag. | 384 // remove this flag. |
| 382 const char kEnableClientSidePhishingInterstitial[] = | 385 const char kEnableClientSidePhishingInterstitial[] = |
| 383 "enable-client-side-phishing-interstitial"; | 386 "enable-client-side-phishing-interstitial"; |
| 384 | 387 |
| 385 // This flag enables UI for clearing server data. Temporarily in place | 388 // This flag enables UI for clearing server data. Temporarily in place |
| 386 // until there's a server endpoint deployed. | 389 // until there's a server endpoint deployed. |
| 387 const char kEnableClearServerData[] = "enable-clear-server-data"; | 390 const char kEnableClearServerData[] = "enable-clear-server-data"; |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1187 | 1190 |
| 1188 // ----------------------------------------------------------------------------- | 1191 // ----------------------------------------------------------------------------- |
| 1189 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1192 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1190 // | 1193 // |
| 1191 // You were going to just dump your switches here, weren't you? Instead, | 1194 // You were going to just dump your switches here, weren't you? Instead, |
| 1192 // please put them in alphabetical order above, or in order inside the | 1195 // please put them in alphabetical order above, or in order inside the |
| 1193 // appropriate ifdef at the bottom. The order should match the header. | 1196 // appropriate ifdef at the bottom. The order should match the header. |
| 1194 // ----------------------------------------------------------------------------- | 1197 // ----------------------------------------------------------------------------- |
| 1195 | 1198 |
| 1196 } // namespace switches | 1199 } // namespace switches |
| OLD | NEW |