| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 // Chrome OS apps list. | 566 // Chrome OS apps list. |
| 567 const char kEnableContacts[] = "enable-contacts"; | 567 const char kEnableContacts[] = "enable-contacts"; |
| 568 | 568 |
| 569 // If true devtools experimental settings are enabled. | 569 // If true devtools experimental settings are enabled. |
| 570 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 570 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
| 571 | 571 |
| 572 // Force-enables DNS probes on main frame DNS errors. (The user must still | 572 // Force-enables DNS probes on main frame DNS errors. (The user must still |
| 573 // opt in to "Use web service to resolve navigation errors".) | 573 // opt in to "Use web service to resolve navigation errors".) |
| 574 const char kEnableDnsProbes[] = "enable-dns-probes"; | 574 const char kEnableDnsProbes[] = "enable-dns-probes"; |
| 575 | 575 |
| 576 // Enables the DOM distiller. |
| 577 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
| 578 |
| 576 // Enables extensions to be easily installed from sites other than the web | 579 // Enables extensions to be easily installed from sites other than the web |
| 577 // store. Without this flag, they can still be installed, but must be manually | 580 // store. Without this flag, they can still be installed, but must be manually |
| 578 // dragged onto chrome://extensions/. | 581 // dragged onto chrome://extensions/. |
| 579 const char kEasyOffStoreExtensionInstall[] = | 582 const char kEasyOffStoreExtensionInstall[] = |
| 580 "easy-off-store-extension-install"; | 583 "easy-off-store-extension-install"; |
| 581 | 584 |
| 582 // Enables logging for extension activity. | 585 // Enables logging for extension activity. |
| 583 const char kEnableExtensionActivityLogging[] = | 586 const char kEnableExtensionActivityLogging[] = |
| 584 "enable-extension-activity-logging"; | 587 "enable-extension-activity-logging"; |
| 585 | 588 |
| (...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 | 1631 |
| 1629 // ----------------------------------------------------------------------------- | 1632 // ----------------------------------------------------------------------------- |
| 1630 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1633 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1631 // | 1634 // |
| 1632 // You were going to just dump your switches here, weren't you? Instead, please | 1635 // You were going to just dump your switches here, weren't you? Instead, please |
| 1633 // put them in alphabetical order above, or in order inside the appropriate | 1636 // put them in alphabetical order above, or in order inside the appropriate |
| 1634 // ifdef at the bottom. The order should match the header. | 1637 // ifdef at the bottom. The order should match the header. |
| 1635 // ----------------------------------------------------------------------------- | 1638 // ----------------------------------------------------------------------------- |
| 1636 | 1639 |
| 1637 } // namespace switches | 1640 } // namespace switches |
| OLD | NEW |