OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
313 const char kDisableExtensionsHttpThrottling[] = | 313 const char kDisableExtensionsHttpThrottling[] = |
314 "disable-extensions-http-throttling"; | 314 "disable-extensions-http-throttling"; |
315 | 315 |
316 // Disable mandatory enforcement of web_accessible_resources in extensions. | 316 // Disable mandatory enforcement of web_accessible_resources in extensions. |
317 const char kDisableExtensionsResourceWhitelist[] = | 317 const char kDisableExtensionsResourceWhitelist[] = |
318 "disable-extensions-resource-whitelist"; | 318 "disable-extensions-resource-whitelist"; |
319 | 319 |
320 // Disables automatically making app run in full screen in force app mode. | 320 // Disables automatically making app run in full screen in force app mode. |
321 const char kDisableFullscreenApp[] = "disable-fullscreen-app"; | 321 const char kDisableFullscreenApp[] = "disable-fullscreen-app"; |
322 | 322 |
323 // Disables enforcement of minimum SSL version for preloaded HSTS entries. | |
324 // For preloaded Google's properties the minimum version will be TLS 1.0. | |
Ryan Sleevi
2013/04/16 19:55:26
s/'s//
s/will be/is/
thaidn_google
2013/04/17 00:46:17
Done.
| |
325 // For others the minimum version is still SSL 3.0, i.e., it has no effect. | |
326 const char kDisableSSLVersionMinPreloaded[] = | |
327 "disable-ssl-version-min-preloaded"; | |
328 | |
323 // Disable Instant extended API. | 329 // Disable Instant extended API. |
324 const char kDisableInstantExtendedAPI[] = "disable-instant-extended-api"; | 330 const char kDisableInstantExtendedAPI[] = "disable-instant-extended-api"; |
325 | 331 |
326 // Disables improved SafeBrowsing download protection. | 332 // Disables improved SafeBrowsing download protection. |
327 const char kDisableImprovedDownloadProtection[] = | 333 const char kDisableImprovedDownloadProtection[] = |
328 "disable-improved-download-protection"; | 334 "disable-improved-download-protection"; |
329 | 335 |
330 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging | 336 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging |
331 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to file | 337 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to file |
332 // bugs if something isn't working properly in the presence of IPv6. This flag | 338 // bugs if something isn't working properly in the presence of IPv6. This flag |
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1686 | 1692 |
1687 // ----------------------------------------------------------------------------- | 1693 // ----------------------------------------------------------------------------- |
1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1694 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1689 // | 1695 // |
1690 // You were going to just dump your switches here, weren't you? Instead, please | 1696 // You were going to just dump your switches here, weren't you? Instead, please |
1691 // put them in alphabetical order above, or in order inside the appropriate | 1697 // put them in alphabetical order above, or in order inside the appropriate |
1692 // ifdef at the bottom. The order should match the header. | 1698 // ifdef at the bottom. The order should match the header. |
1693 // ----------------------------------------------------------------------------- | 1699 // ----------------------------------------------------------------------------- |
1694 | 1700 |
1695 } // namespace switches | 1701 } // namespace switches |
OLD | NEW |