| 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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 const char kEnableOmniboxAutoCompletionForIme[] = | 647 const char kEnableOmniboxAutoCompletionForIme[] = |
| 648 "enable-omnibox-auto-completion-for-ime"; | 648 "enable-omnibox-auto-completion-for-ime"; |
| 649 | 649 |
| 650 // Enables panels (always on-top docked pop-up windows). | 650 // Enables panels (always on-top docked pop-up windows). |
| 651 const char kEnablePanels[] = "enable-panels"; | 651 const char kEnablePanels[] = "enable-panels"; |
| 652 | 652 |
| 653 // Enables password generation when we detect that the user is going through | 653 // Enables password generation when we detect that the user is going through |
| 654 // account creation. | 654 // account creation. |
| 655 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 655 const char kEnablePasswordGeneration[] = "enable-password-generation"; |
| 656 | 656 |
| 657 // Disables the usage of Portable Native Client. | 657 // Enables the usage of Portable Native Client. |
| 658 const char kDisablePnacl[] = "disable-pnacl"; | 658 const char kEnablePnacl[] = "enable-pnacl"; |
| 659 | 659 |
| 660 // Disables the installation of Portable Native Client. | 660 // Disables the installation of Portable Native Client. |
| 661 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 661 const char kDisablePnaclInstall[] = "disable-pnacl-install"; |
| 662 | 662 |
| 663 // Enables tracking of tasks in profiler for viewing via about:profiler. | 663 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 664 // To predominantly disable tracking (profiling), use the command line switch: | 664 // To predominantly disable tracking (profiling), use the command line switch: |
| 665 // --enable-profiling=0 | 665 // --enable-profiling=0 |
| 666 // Some tracking will still take place at startup, but it will be turned off | 666 // Some tracking will still take place at startup, but it will be turned off |
| 667 // during chrome_browser_main. | 667 // during chrome_browser_main. |
| 668 const char kEnableProfiling[] = "enable-profiling"; | 668 const char kEnableProfiling[] = "enable-profiling"; |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 | 1605 |
| 1606 // ----------------------------------------------------------------------------- | 1606 // ----------------------------------------------------------------------------- |
| 1607 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1607 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1608 // | 1608 // |
| 1609 // You were going to just dump your switches here, weren't you? Instead, please | 1609 // You were going to just dump your switches here, weren't you? Instead, please |
| 1610 // put them in alphabetical order above, or in order inside the appropriate | 1610 // put them in alphabetical order above, or in order inside the appropriate |
| 1611 // ifdef at the bottom. The order should match the header. | 1611 // ifdef at the bottom. The order should match the header. |
| 1612 // ----------------------------------------------------------------------------- | 1612 // ----------------------------------------------------------------------------- |
| 1613 | 1613 |
| 1614 } // namespace switches | 1614 } // namespace switches |
| OLD | NEW |