Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 55293003: Defer app window appearance until first paint. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge issue Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698