| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 // Enables Domain Reliability Monitoring. | 444 // Enables Domain Reliability Monitoring. |
| 445 const char kEnableDomainReliability[] = "enable-domain-reliability"; | 445 const char kEnableDomainReliability[] = "enable-domain-reliability"; |
| 446 | 446 |
| 447 // Enable Enhanced Bookmarks. | 447 // Enable Enhanced Bookmarks. |
| 448 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; | 448 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; |
| 449 | 449 |
| 450 // Enables experimentation with ephemeral apps, which are launched without | 450 // Enables experimentation with ephemeral apps, which are launched without |
| 451 // installing in Chrome. | 451 // installing in Chrome. |
| 452 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 452 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
| 453 | 453 |
| 454 // Enables v2 hotword detection features. These features include | 454 // Disables v2 hotword detection features. These features include |
| 455 // using a new component extension for performing hotword detection, new UI | 455 // using a new component extension for performing hotword detection, new UI |
| 456 // flows, and always-on detection. | 456 // flows, and always-on detection. |
| 457 const char kEnableExperimentalHotwording[] = "enable-experimental-hotwording"; | 457 const char kDisableExperimentalHotwording[] = "disable-experimental-hotwording"; |
| 458 | 458 |
| 459 // Enables experimental hotword features specific to always-on. | 459 // Enables experimental hotword features specific to always-on. |
| 460 const char kEnableExperimentalHotwordHardware[] = "enable-hotword-hardware"; | 460 const char kEnableExperimentalHotwordHardware[] = "enable-hotword-hardware"; |
| 461 | 461 |
| 462 // Enables logging for extension activity. | 462 // Enables logging for extension activity. |
| 463 const char kEnableExtensionActivityLogging[] = | 463 const char kEnableExtensionActivityLogging[] = |
| 464 "enable-extension-activity-logging"; | 464 "enable-extension-activity-logging"; |
| 465 | 465 |
| 466 const char kEnableExtensionActivityLogTesting[] = | 466 const char kEnableExtensionActivityLogTesting[] = |
| 467 "enable-extension-activity-log-testing"; | 467 "enable-extension-activity-log-testing"; |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1399 | 1399 |
| 1400 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
| 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1402 // | 1402 // |
| 1403 // You were going to just dump your switches here, weren't you? Instead, please | 1403 // You were going to just dump your switches here, weren't you? Instead, please |
| 1404 // put them in alphabetical order above, or in order inside the appropriate | 1404 // put them in alphabetical order above, or in order inside the appropriate |
| 1405 // ifdef at the bottom. The order should match the header. | 1405 // ifdef at the bottom. The order should match the header. |
| 1406 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
| 1407 | 1407 |
| 1408 } // namespace switches | 1408 } // namespace switches |
| OLD | NEW |