| 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 const char kEnableOmniboxAutoCompletionForIme[] = | 652 const char kEnableOmniboxAutoCompletionForIme[] = |
| 653 "enable-omnibox-auto-completion-for-ime"; | 653 "enable-omnibox-auto-completion-for-ime"; |
| 654 | 654 |
| 655 // Enables panels (always on-top docked pop-up windows). | 655 // Enables panels (always on-top docked pop-up windows). |
| 656 const char kEnablePanels[] = "enable-panels"; | 656 const char kEnablePanels[] = "enable-panels"; |
| 657 | 657 |
| 658 // Enables password generation when we detect that the user is going through | 658 // Enables password generation when we detect that the user is going through |
| 659 // account creation. | 659 // account creation. |
| 660 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 660 const char kEnablePasswordGeneration[] = "enable-password-generation"; |
| 661 | 661 |
| 662 // Enables searching for people from the apps list search box. |
| 663 const char kEnablePeopleSearch[] = "enable-people-search"; |
| 664 |
| 662 // Disables the usage of Portable Native Client. | 665 // Disables the usage of Portable Native Client. |
| 663 const char kDisablePnacl[] = "disable-pnacl"; | 666 const char kDisablePnacl[] = "disable-pnacl"; |
| 664 | 667 |
| 665 // Disables crash throttling for Portable Native Client. | 668 // Disables crash throttling for Portable Native Client. |
| 666 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; | 669 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; |
| 667 | 670 |
| 668 // Disables the installation of Portable Native Client. | 671 // Disables the installation of Portable Native Client. |
| 669 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 672 const char kDisablePnaclInstall[] = "disable-pnacl-install"; |
| 670 | 673 |
| 671 // Enables tracking of tasks in profiler for viewing via about:profiler. | 674 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1599 | 1602 |
| 1600 // ----------------------------------------------------------------------------- | 1603 // ----------------------------------------------------------------------------- |
| 1601 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1604 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1602 // | 1605 // |
| 1603 // You were going to just dump your switches here, weren't you? Instead, please | 1606 // You were going to just dump your switches here, weren't you? Instead, please |
| 1604 // put them in alphabetical order above, or in order inside the appropriate | 1607 // put them in alphabetical order above, or in order inside the appropriate |
| 1605 // ifdef at the bottom. The order should match the header. | 1608 // ifdef at the bottom. The order should match the header. |
| 1606 // ----------------------------------------------------------------------------- | 1609 // ----------------------------------------------------------------------------- |
| 1607 | 1610 |
| 1608 } // namespace switches | 1611 } // namespace switches |
| OLD | NEW |