| 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 | 426 |
| 427 // Enables the <adview> tag in packaged apps. | 427 // Enables the <adview> tag in packaged apps. |
| 428 const char kEnableAdview[] = "enable-adview"; | 428 const char kEnableAdview[] = "enable-adview"; |
| 429 | 429 |
| 430 // If set, the app list will be enabled as if enabled from CWS. | 430 // If set, the app list will be enabled as if enabled from CWS. |
| 431 const char kEnableAppList[] = "enable-app-list"; | 431 const char kEnableAppList[] = "enable-app-list"; |
| 432 | 432 |
| 433 // Enables the <window-controls> tag in platform apps. | 433 // Enables the <window-controls> tag in platform apps. |
| 434 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 434 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
| 435 | 435 |
| 436 // Enable OS integration for Chrome app file associations. |
| 437 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
| 438 |
| 436 // Show apps windows after the first paint. Windows will be shown significantly | 439 // Show apps windows after the first paint. Windows will be shown significantly |
| 437 // later for heavy apps loading resources synchronously but it will be | 440 // later for heavy apps loading resources synchronously but it will be |
| 438 // insignificant for apps that load most of their resources asynchronously. | 441 // insignificant for apps that load most of their resources asynchronously. |
| 439 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 442 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 440 | 443 |
| 441 // Enables the experimental asynchronous DNS client. | 444 // Enables the experimental asynchronous DNS client. |
| 442 const char kEnableAsyncDns[] = "enable-async-dns"; | 445 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 443 | 446 |
| 444 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 447 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 445 // in response to a Negotiate challenge. See | 448 // in response to a Negotiate challenge. See |
| (...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 | 1442 |
| 1440 // ----------------------------------------------------------------------------- | 1443 // ----------------------------------------------------------------------------- |
| 1441 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1444 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1442 // | 1445 // |
| 1443 // You were going to just dump your switches here, weren't you? Instead, please | 1446 // You were going to just dump your switches here, weren't you? Instead, please |
| 1444 // put them in alphabetical order above, or in order inside the appropriate | 1447 // put them in alphabetical order above, or in order inside the appropriate |
| 1445 // ifdef at the bottom. The order should match the header. | 1448 // ifdef at the bottom. The order should match the header. |
| 1446 // ----------------------------------------------------------------------------- | 1449 // ----------------------------------------------------------------------------- |
| 1447 | 1450 |
| 1448 } // namespace switches | 1451 } // namespace switches |
| OLD | NEW |