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