| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. | 557 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. |
| 558 const char kEnableNpn[] = "enable-npn"; | 558 const char kEnableNpn[] = "enable-npn"; |
| 559 | 559 |
| 560 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. | 560 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. |
| 561 // HTTP is still used for all requests. | 561 // HTTP is still used for all requests. |
| 562 const char kEnableNpnHttpOnly[] = "enable-npn-http"; | 562 const char kEnableNpnHttpOnly[] = "enable-npn-http"; |
| 563 | 563 |
| 564 // Enables panels (always on-top docked pop-up windows). | 564 // Enables panels (always on-top docked pop-up windows). |
| 565 const char kEnablePanels[] = "enable-panels"; | 565 const char kEnablePanels[] = "enable-panels"; |
| 566 | 566 |
| 567 // Enables password generation when we detect that the user is going through | |
| 568 // account creation. | |
| 569 const char kEnablePasswordGeneration[] = "enable-password-generation"; | |
| 570 | |
| 571 // Enables advanced app capabilities. | 567 // Enables advanced app capabilities. |
| 572 const char kEnablePlatformApps[] = "enable-platform-apps"; | 568 const char kEnablePlatformApps[] = "enable-platform-apps"; |
| 573 | 569 |
| 574 // Enables content settings based on host *and* plug-in in the user | 570 // Enables content settings based on host *and* plug-in in the user |
| 575 // preferences. | 571 // preferences. |
| 576 const char kEnableResourceContentSettings[] = | 572 const char kEnableResourceContentSettings[] = |
| 577 "enable-resource-content-settings"; | 573 "enable-resource-content-settings"; |
| 578 | 574 |
| 579 // Enables the installation and usage of Portable Native Client. | 575 // Enables the installation and usage of Portable Native Client. |
| 580 const char kEnablePnacl[] = "enable-pnacl"; | 576 const char kEnablePnacl[] = "enable-pnacl"; |
| (...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 | 1409 |
| 1414 // ----------------------------------------------------------------------------- | 1410 // ----------------------------------------------------------------------------- |
| 1415 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1411 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1416 // | 1412 // |
| 1417 // You were going to just dump your switches here, weren't you? Instead, please | 1413 // You were going to just dump your switches here, weren't you? Instead, please |
| 1418 // put them in alphabetical order above, or in order inside the appropriate | 1414 // put them in alphabetical order above, or in order inside the appropriate |
| 1419 // ifdef at the bottom. The order should match the header. | 1415 // ifdef at the bottom. The order should match the header. |
| 1420 // ----------------------------------------------------------------------------- | 1416 // ----------------------------------------------------------------------------- |
| 1421 | 1417 |
| 1422 } // namespace switches | 1418 } // namespace switches |
| OLD | NEW |