| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 // Enable device discovery notifications. | 564 // Enable device discovery notifications. |
| 565 const char kEnableDeviceDiscoveryNotifications[] = | 565 const char kEnableDeviceDiscoveryNotifications[] = |
| 566 "enable-device-discovery-notifications"; | 566 "enable-device-discovery-notifications"; |
| 567 | 567 |
| 568 // Enables the DOM distiller. | 568 // Enables the DOM distiller. |
| 569 const char kEnableDomDistiller[] = "enable-dom-distiller"; | 569 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
| 570 | 570 |
| 571 // Enable Enhanced Bookmarks. | 571 // Enable Enhanced Bookmarks. |
| 572 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; | 572 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; |
| 573 | 573 |
| 574 // Enables Easy Unlock to be set up and used. |
| 575 extern const char kEnableEasyUnlock[] = "enable-easy-unlock"; |
| 576 |
| 574 // Enables experimentation with ephemeral apps, which are launched without | 577 // Enables experimentation with ephemeral apps, which are launched without |
| 575 // installing in Chrome. | 578 // installing in Chrome. |
| 576 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 579 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
| 577 | 580 |
| 578 // Enables logging for extension activity. | 581 // Enables logging for extension activity. |
| 579 const char kEnableExtensionActivityLogging[] = | 582 const char kEnableExtensionActivityLogging[] = |
| 580 "enable-extension-activity-logging"; | 583 "enable-extension-activity-logging"; |
| 581 | 584 |
| 582 const char kEnableExtensionActivityLogTesting[] = | 585 const char kEnableExtensionActivityLogTesting[] = |
| 583 "enable-extension-activity-log-testing"; | 586 "enable-extension-activity-log-testing"; |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1591 | 1594 |
| 1592 // ----------------------------------------------------------------------------- | 1595 // ----------------------------------------------------------------------------- |
| 1593 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1596 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1594 // | 1597 // |
| 1595 // You were going to just dump your switches here, weren't you? Instead, please | 1598 // You were going to just dump your switches here, weren't you? Instead, please |
| 1596 // put them in alphabetical order above, or in order inside the appropriate | 1599 // put them in alphabetical order above, or in order inside the appropriate |
| 1597 // ifdef at the bottom. The order should match the header. | 1600 // ifdef at the bottom. The order should match the header. |
| 1598 // ----------------------------------------------------------------------------- | 1601 // ----------------------------------------------------------------------------- |
| 1599 | 1602 |
| 1600 } // namespace switches | 1603 } // namespace switches |
| OLD | NEW |