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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 // If set, the app list will be enabled as if enabled from CWS. | 537 // If set, the app list will be enabled as if enabled from CWS. |
538 const char kEnableAppList[] = "enable-app-list"; | 538 const char kEnableAppList[] = "enable-app-list"; |
539 | 539 |
540 // Enables specifying a "src" attribute on <adview> elements | 540 // Enables specifying a "src" attribute on <adview> elements |
541 // (for testing purposes, to skip the whitelist). | 541 // (for testing purposes, to skip the whitelist). |
542 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; | 542 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; |
543 | 543 |
544 // Enables the <window-controls> tag in platform apps. | 544 // Enables the <window-controls> tag in platform apps. |
545 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 545 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
546 | 546 |
| 547 // Show apps windows after the first paint. Windows will be shown significantly |
| 548 // later for heavy apps loading resources synchronously but it will be |
| 549 // insignificant for apps that load most of their resources asynchronously. |
| 550 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 551 |
547 // Enables the experimental asynchronous DNS client. | 552 // Enables the experimental asynchronous DNS client. |
548 const char kEnableAsyncDns[] = "enable-async-dns"; | 553 const char kEnableAsyncDns[] = "enable-async-dns"; |
549 | 554 |
550 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 555 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
551 // in response to a Negotiate challenge. See | 556 // in response to a Negotiate challenge. See |
552 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 557 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
553 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 558 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
554 | 559 |
555 // Enable using a public suffix based domain matching for autofill of passwords. | 560 // Enable using a public suffix based domain matching for autofill of passwords. |
556 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 561 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
(...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 | 1664 |
1660 // ----------------------------------------------------------------------------- | 1665 // ----------------------------------------------------------------------------- |
1661 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1662 // | 1667 // |
1663 // You were going to just dump your switches here, weren't you? Instead, please | 1668 // You were going to just dump your switches here, weren't you? Instead, please |
1664 // put them in alphabetical order above, or in order inside the appropriate | 1669 // put them in alphabetical order above, or in order inside the appropriate |
1665 // ifdef at the bottom. The order should match the header. | 1670 // ifdef at the bottom. The order should match the header. |
1666 // ----------------------------------------------------------------------------- | 1671 // ----------------------------------------------------------------------------- |
1667 | 1672 |
1668 } // namespace switches | 1673 } // namespace switches |
OLD | NEW |