| 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 // Chrome OS apps list. | 587 // Chrome OS apps list. |
| 588 const char kEnableContacts[] = "enable-contacts"; | 588 const char kEnableContacts[] = "enable-contacts"; |
| 589 | 589 |
| 590 // If true devtools experimental settings are enabled. | 590 // If true devtools experimental settings are enabled. |
| 591 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 591 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
| 592 | 592 |
| 593 // Enable device discovery notifications. | 593 // Enable device discovery notifications. |
| 594 const char kEnableDeviceDiscoveryNotifications[] = | 594 const char kEnableDeviceDiscoveryNotifications[] = |
| 595 "enable-device-discovery-notifications"; | 595 "enable-device-discovery-notifications"; |
| 596 | 596 |
| 597 // Enables the DOM distiller. | |
| 598 const char kEnableDomDistiller[] = "enable-dom-distiller"; | |
| 599 | |
| 600 // Enable Enhanced Bookmarks. | 597 // Enable Enhanced Bookmarks. |
| 601 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks"; | 598 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks"; |
| 602 | 599 |
| 603 // Enables experimentation with ephemeral apps, which are launched without | 600 // Enables experimentation with ephemeral apps, which are launched without |
| 604 // installing in Chrome. | 601 // installing in Chrome. |
| 605 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 602 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
| 606 | 603 |
| 607 // Enables logging for extension activity. | 604 // Enables logging for extension activity. |
| 608 const char kEnableExtensionActivityLogging[] = | 605 const char kEnableExtensionActivityLogging[] = |
| 609 "enable-extension-activity-logging"; | 606 "enable-extension-activity-logging"; |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1646 | 1643 |
| 1647 // ----------------------------------------------------------------------------- | 1644 // ----------------------------------------------------------------------------- |
| 1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1645 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1649 // | 1646 // |
| 1650 // You were going to just dump your switches here, weren't you? Instead, please | 1647 // You were going to just dump your switches here, weren't you? Instead, please |
| 1651 // put them in alphabetical order above, or in order inside the appropriate | 1648 // put them in alphabetical order above, or in order inside the appropriate |
| 1652 // ifdef at the bottom. The order should match the header. | 1649 // ifdef at the bottom. The order should match the header. |
| 1653 // ----------------------------------------------------------------------------- | 1650 // ----------------------------------------------------------------------------- |
| 1654 | 1651 |
| 1655 } // namespace switches | 1652 } // namespace switches |
| OLD | NEW |