| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 | 683 |
| 684 // Enables panels (always on-top docked pop-up windows). | 684 // Enables panels (always on-top docked pop-up windows). |
| 685 const char kEnablePanels[] = "enable-panels"; | 685 const char kEnablePanels[] = "enable-panels"; |
| 686 | 686 |
| 687 // Enables searching for people from the apps list search box. | 687 // Enables searching for people from the apps list search box. |
| 688 const char kDisablePeopleSearch[] = "disable-people-search"; | 688 const char kDisablePeopleSearch[] = "disable-people-search"; |
| 689 | 689 |
| 690 // Disables the usage of Portable Native Client. | 690 // Disables the usage of Portable Native Client. |
| 691 const char kDisablePnacl[] = "disable-pnacl"; | 691 const char kDisablePnacl[] = "disable-pnacl"; |
| 692 | 692 |
| 693 // Disables crash throttling for Portable Native Client. | |
| 694 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; | |
| 695 | |
| 696 // Disables the installation of Portable Native Client. | |
| 697 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | |
| 698 | |
| 699 // Enables the proactive populating of the disk cache with Web resources that | 693 // Enables the proactive populating of the disk cache with Web resources that |
| 700 // are likely to be needed in future page fetches. | 694 // are likely to be needed in future page fetches. |
| 701 const char kEnablePrecache[] = "enable-precache"; | 695 const char kEnablePrecache[] = "enable-precache"; |
| 702 | 696 |
| 703 // Enable Privet local printing. | 697 // Enable Privet local printing. |
| 704 const char kEnablePrivetLocalPrinting[] = "enable-privet-local-printing"; | 698 const char kEnablePrivetLocalPrinting[] = "enable-privet-local-printing"; |
| 705 | 699 |
| 706 // Enables tracking of tasks in profiler for viewing via about:profiler. | 700 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 707 // To predominantly disable tracking (profiling), use the command line switch: | 701 // To predominantly disable tracking (profiling), use the command line switch: |
| 708 // --enable-profiling=0 | 702 // --enable-profiling=0 |
| (...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 | 1635 |
| 1642 // ----------------------------------------------------------------------------- | 1636 // ----------------------------------------------------------------------------- |
| 1643 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1637 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1644 // | 1638 // |
| 1645 // You were going to just dump your switches here, weren't you? Instead, please | 1639 // You were going to just dump your switches here, weren't you? Instead, please |
| 1646 // put them in alphabetical order above, or in order inside the appropriate | 1640 // put them in alphabetical order above, or in order inside the appropriate |
| 1647 // ifdef at the bottom. The order should match the header. | 1641 // ifdef at the bottom. The order should match the header. |
| 1648 // ----------------------------------------------------------------------------- | 1642 // ----------------------------------------------------------------------------- |
| 1649 | 1643 |
| 1650 } // namespace switches | 1644 } // namespace switches |
| OLD | NEW |