 Chromium Code Reviews
 Chromium Code Reviews Issue 774003002:
  [Hotword] Reverse the experimental flag so that it is on by default.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 774003002:
  [Hotword] Reverse the experimental flag so that it is on by default.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| 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 // Enables v2 hotword detection features. These features include | 
| 
Anand Mistry (off Chromium)
2014/12/03 04:04:53
s/Enables/Disables
 
rpetterson
2014/12/03 06:54:39
Done.
 | |
| 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1396 | 1396 | 
| 1397 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- | 
| 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
| 1399 // | 1399 // | 
| 1400 // You were going to just dump your switches here, weren't you? Instead, please | 1400 // You were going to just dump your switches here, weren't you? Instead, please | 
| 1401 // put them in alphabetical order above, or in order inside the appropriate | 1401 // put them in alphabetical order above, or in order inside the appropriate | 
| 1402 // ifdef at the bottom. The order should match the header. | 1402 // ifdef at the bottom. The order should match the header. | 
| 1403 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- | 
| 1404 | 1404 | 
| 1405 } // namespace switches | 1405 } // namespace switches | 
| OLD | NEW |