| 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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 // Chrome OS apps list. | 577 // Chrome OS apps list. |
| 578 const char kEnableContacts[] = "enable-contacts"; | 578 const char kEnableContacts[] = "enable-contacts"; |
| 579 | 579 |
| 580 // If true devtools experimental settings are enabled. | 580 // If true devtools experimental settings are enabled. |
| 581 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 581 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
| 582 | 582 |
| 583 // Enable device discovery notifications. | 583 // Enable device discovery notifications. |
| 584 const char kEnableDeviceDiscoveryNotifications[] = | 584 const char kEnableDeviceDiscoveryNotifications[] = |
| 585 "enable-device-discovery-notifications"; | 585 "enable-device-discovery-notifications"; |
| 586 | 586 |
| 587 // Enables the DOM distiller. | |
| 588 const char kEnableDomDistiller[] = "enable-dom-distiller"; | |
| 589 | |
| 590 // Enables experimentation with ephemeral apps, which are launched without | 587 // Enables experimentation with ephemeral apps, which are launched without |
| 591 // installing in Chrome. | 588 // installing in Chrome. |
| 592 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 589 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
| 593 | 590 |
| 594 // Enables logging for extension activity. | 591 // Enables logging for extension activity. |
| 595 const char kEnableExtensionActivityLogging[] = | 592 const char kEnableExtensionActivityLogging[] = |
| 596 "enable-extension-activity-logging"; | 593 "enable-extension-activity-logging"; |
| 597 | 594 |
| 598 const char kEnableExtensionActivityLogTesting[] = | 595 const char kEnableExtensionActivityLogTesting[] = |
| 599 "enable-extension-activity-log-testing"; | 596 "enable-extension-activity-log-testing"; |
| (...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1624 | 1621 |
| 1625 // ----------------------------------------------------------------------------- | 1622 // ----------------------------------------------------------------------------- |
| 1626 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1627 // | 1624 // |
| 1628 // You were going to just dump your switches here, weren't you? Instead, please | 1625 // You were going to just dump your switches here, weren't you? Instead, please |
| 1629 // put them in alphabetical order above, or in order inside the appropriate | 1626 // put them in alphabetical order above, or in order inside the appropriate |
| 1630 // ifdef at the bottom. The order should match the header. | 1627 // ifdef at the bottom. The order should match the header. |
| 1631 // ----------------------------------------------------------------------------- | 1628 // ----------------------------------------------------------------------------- |
| 1632 | 1629 |
| 1633 } // namespace switches | 1630 } // namespace switches |
| OLD | NEW |