| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 const char kEnableOmniboxAutoCompletionForIme[] = | 624 const char kEnableOmniboxAutoCompletionForIme[] = |
| 625 "enable-omnibox-auto-completion-for-ime"; | 625 "enable-omnibox-auto-completion-for-ime"; |
| 626 | 626 |
| 627 // Enables panels (always on-top docked pop-up windows). | 627 // Enables panels (always on-top docked pop-up windows). |
| 628 const char kEnablePanels[] = "enable-panels"; | 628 const char kEnablePanels[] = "enable-panels"; |
| 629 | 629 |
| 630 // Enables password generation when we detect that the user is going through | 630 // Enables password generation when we detect that the user is going through |
| 631 // account creation. | 631 // account creation. |
| 632 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 632 const char kEnablePasswordGeneration[] = "enable-password-generation"; |
| 633 | 633 |
| 634 // Enables the usage of Portable Native Client. | 634 // Disables the usage of Portable Native Client. |
| 635 const char kEnablePnacl[] = "enable-pnacl"; | 635 const char kDisablePnacl[] = "disable-pnacl"; |
| 636 | 636 |
| 637 // Disables the installation of Portable Native Client. | 637 // Disables the installation of Portable Native Client. |
| 638 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 638 const char kDisablePnaclInstall[] = "disable-pnacl-install"; |
| 639 | 639 |
| 640 // Enables tracking of tasks in profiler for viewing via about:profiler. | 640 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 641 // To predominantly disable tracking (profiling), use the command line switch: | 641 // To predominantly disable tracking (profiling), use the command line switch: |
| 642 // --enable-profiling=0 | 642 // --enable-profiling=0 |
| 643 // Some tracking will still take place at startup, but it will be turned off | 643 // Some tracking will still take place at startup, but it will be turned off |
| 644 // during chrome_browser_main. | 644 // during chrome_browser_main. |
| 645 const char kEnableProfiling[] = "enable-profiling"; | 645 const char kEnableProfiling[] = "enable-profiling"; |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1592 | 1592 |
| 1593 // ----------------------------------------------------------------------------- | 1593 // ----------------------------------------------------------------------------- |
| 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1595 // | 1595 // |
| 1596 // You were going to just dump your switches here, weren't you? Instead, please | 1596 // You were going to just dump your switches here, weren't you? Instead, please |
| 1597 // put them in alphabetical order above, or in order inside the appropriate | 1597 // put them in alphabetical order above, or in order inside the appropriate |
| 1598 // ifdef at the bottom. The order should match the header. | 1598 // ifdef at the bottom. The order should match the header. |
| 1599 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
| 1600 | 1600 |
| 1601 } // namespace switches | 1601 } // namespace switches |
| OLD | NEW |