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