| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 const char kEnableOmniboxAutoCompletionForIme[] = | 615 const char kEnableOmniboxAutoCompletionForIme[] = |
| 616 "enable-omnibox-auto-completion-for-ime"; | 616 "enable-omnibox-auto-completion-for-ime"; |
| 617 | 617 |
| 618 // Enables panels (always on-top docked pop-up windows). | 618 // Enables panels (always on-top docked pop-up windows). |
| 619 const char kEnablePanels[] = "enable-panels"; | 619 const char kEnablePanels[] = "enable-panels"; |
| 620 | 620 |
| 621 // Enables password generation when we detect that the user is going through | 621 // Enables password generation when we detect that the user is going through |
| 622 // account creation. | 622 // account creation. |
| 623 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 623 const char kEnablePasswordGeneration[] = "enable-password-generation"; |
| 624 | 624 |
| 625 // Enables the usage of Portable Native Client. | 625 // Disables the usage of Portable Native Client. |
| 626 const char kEnablePnacl[] = "enable-pnacl"; | 626 const char kDisablePnacl[] = "disable-pnacl"; |
| 627 | 627 |
| 628 // Disables the installation of Portable Native Client. | 628 // Disables the installation of Portable Native Client. |
| 629 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | 629 const char kDisablePnaclInstall[] = "disable-pnacl-install"; |
| 630 | 630 |
| 631 // Enables tracking of tasks in profiler for viewing via about:profiler. | 631 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 632 // To predominantly disable tracking (profiling), use the command line switch: | 632 // To predominantly disable tracking (profiling), use the command line switch: |
| 633 // --enable-profiling=0 | 633 // --enable-profiling=0 |
| 634 // Some tracking will still take place at startup, but it will be turned off | 634 // Some tracking will still take place at startup, but it will be turned off |
| 635 // during chrome_browser_main. | 635 // during chrome_browser_main. |
| 636 const char kEnableProfiling[] = "enable-profiling"; | 636 const char kEnableProfiling[] = "enable-profiling"; |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1564 | 1564 |
| 1565 // ----------------------------------------------------------------------------- | 1565 // ----------------------------------------------------------------------------- |
| 1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1567 // | 1567 // |
| 1568 // You were going to just dump your switches here, weren't you? Instead, please | 1568 // You were going to just dump your switches here, weren't you? Instead, please |
| 1569 // put them in alphabetical order above, or in order inside the appropriate | 1569 // put them in alphabetical order above, or in order inside the appropriate |
| 1570 // ifdef at the bottom. The order should match the header. | 1570 // ifdef at the bottom. The order should match the header. |
| 1571 // ----------------------------------------------------------------------------- | 1571 // ----------------------------------------------------------------------------- |
| 1572 | 1572 |
| 1573 } // namespace switches | 1573 } // namespace switches |
| OLD | NEW |