Chromium Code Reviews| 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 648 const char kEnableOmniboxAutoCompletionForIme[] = | 648 const char kEnableOmniboxAutoCompletionForIme[] = | 
| 649 "enable-omnibox-auto-completion-for-ime"; | 649 "enable-omnibox-auto-completion-for-ime"; | 
| 650 | 650 | 
| 651 // Enables panels (always on-top docked pop-up windows). | 651 // Enables panels (always on-top docked pop-up windows). | 
| 652 const char kEnablePanels[] = "enable-panels"; | 652 const char kEnablePanels[] = "enable-panels"; | 
| 653 | 653 | 
| 654 // Enables password generation when we detect that the user is going through | 654 // Enables password generation when we detect that the user is going through | 
| 655 // account creation. | 655 // account creation. | 
| 656 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 656 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 
| 657 | 657 | 
| 658 // Enables searching for people from the apps list search box. | |
| 659 const char kEnablePeopleSearch[] = "enable-people-search"; | |
| 
 
xiyuan
2013/09/04 23:15:41
nit: align '=' with other lines.
 
rkc
2013/09/04 23:48:02
Done.
 
 | |
| 660 | |
| 658 // Disables the usage of Portable Native Client. | 661 // Disables the usage of Portable Native Client. | 
| 659 const char kDisablePnacl[] = "disable-pnacl"; | 662 const char kDisablePnacl[] = "disable-pnacl"; | 
| 660 | 663 | 
| 661 // Disables crash throttling for Portable Native Client. | 664 // Disables crash throttling for Portable Native Client. | 
| 662 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; | 665 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; | 
| 663 | 666 | 
| 664 // Disables the installation of Portable Native Client. | 667 // Disables the installation of Portable Native Client. | 
| 665 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 668 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 
| 666 | 669 | 
| 667 // Enables tracking of tasks in profiler for viewing via about:profiler. | 670 // Enables tracking of tasks in profiler for viewing via about:profiler. | 
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1607 | 1610 | 
| 1608 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- | 
| 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1612 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
| 1610 // | 1613 // | 
| 1611 // You were going to just dump your switches here, weren't you? Instead, please | 1614 // You were going to just dump your switches here, weren't you? Instead, please | 
| 1612 // put them in alphabetical order above, or in order inside the appropriate | 1615 // put them in alphabetical order above, or in order inside the appropriate | 
| 1613 // ifdef at the bottom. The order should match the header. | 1616 // ifdef at the bottom. The order should match the header. | 
| 1614 // ----------------------------------------------------------------------------- | 1617 // ----------------------------------------------------------------------------- | 
| 1615 | 1618 | 
| 1616 } // namespace switches | 1619 } // namespace switches | 
| OLD | NEW |