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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 const char kEnableDeviceDiscoveryNotifications[] = | 593 const char kEnableDeviceDiscoveryNotifications[] = |
594 "enable-device-discovery-notifications"; | 594 "enable-device-discovery-notifications"; |
595 | 595 |
596 // Force-enables DNS probes on main frame DNS errors. (The user must still | 596 // Force-enables DNS probes on main frame DNS errors. (The user must still |
597 // opt in to "Use web service to resolve navigation errors".) | 597 // opt in to "Use web service to resolve navigation errors".) |
598 const char kEnableDnsProbes[] = "enable-dns-probes"; | 598 const char kEnableDnsProbes[] = "enable-dns-probes"; |
599 | 599 |
600 // Enables the DOM distiller. | 600 // Enables the DOM distiller. |
601 const char kEnableDomDistiller[] = "enable-dom-distiller"; | 601 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
602 | 602 |
| 603 // Enable Enhanced Bookmarks. |
| 604 const char kEnableEnhancedBookmarks[] = "enable-enhanced-bookmarks"; |
| 605 |
603 // Enables experimentation with ephemeral apps, which are launched without | 606 // Enables experimentation with ephemeral apps, which are launched without |
604 // installing in Chrome. | 607 // installing in Chrome. |
605 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 608 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
606 | 609 |
607 // Enables logging for extension activity. | 610 // Enables logging for extension activity. |
608 const char kEnableExtensionActivityLogging[] = | 611 const char kEnableExtensionActivityLogging[] = |
609 "enable-extension-activity-logging"; | 612 "enable-extension-activity-logging"; |
610 | 613 |
611 const char kEnableExtensionActivityLogTesting[] = | 614 const char kEnableExtensionActivityLogTesting[] = |
612 "enable-extension-activity-log-testing"; | 615 "enable-extension-activity-log-testing"; |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1641 | 1644 |
1642 // ----------------------------------------------------------------------------- | 1645 // ----------------------------------------------------------------------------- |
1643 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1646 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1644 // | 1647 // |
1645 // You were going to just dump your switches here, weren't you? Instead, please | 1648 // 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 | 1649 // put them in alphabetical order above, or in order inside the appropriate |
1647 // ifdef at the bottom. The order should match the header. | 1650 // ifdef at the bottom. The order should match the header. |
1648 // ----------------------------------------------------------------------------- | 1651 // ----------------------------------------------------------------------------- |
1649 | 1652 |
1650 } // namespace switches | 1653 } // namespace switches |
OLD | NEW |