| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 // Enables Domain Reliability Monitoring. | 449 // Enables Domain Reliability Monitoring. |
| 450 const char kEnableDomainReliability[] = "enable-domain-reliability"; | 450 const char kEnableDomainReliability[] = "enable-domain-reliability"; |
| 451 | 451 |
| 452 // Enable Enhanced Bookmarks. | 452 // Enable Enhanced Bookmarks. |
| 453 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; | 453 const char kEnhancedBookmarksExperiment[] = "enhanced-bookmarks-experiment"; |
| 454 | 454 |
| 455 // Enables experimentation with ephemeral apps, which are launched without | 455 // Enables experimentation with ephemeral apps, which are launched without |
| 456 // installing in Chrome. | 456 // installing in Chrome. |
| 457 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; | 457 const char kEnableEphemeralApps[] = "enable-ephemeral-apps"; |
| 458 | 458 |
| 459 // Enables experimental hotword detection features. | 459 // Enables experimental hotword detection features. These features include |
| 460 // using a new component extension for performing hotword detection, new UI |
| 461 // flows, and always-on detection. |
| 460 const char kEnableExperimentalHotwording[] = "enable-experimental-hotwording"; | 462 const char kEnableExperimentalHotwording[] = "enable-experimental-hotwording"; |
| 461 | 463 |
| 462 // Enables logging for extension activity. | 464 // Enables logging for extension activity. |
| 463 const char kEnableExtensionActivityLogging[] = | 465 const char kEnableExtensionActivityLogging[] = |
| 464 "enable-extension-activity-logging"; | 466 "enable-extension-activity-logging"; |
| 465 | 467 |
| 466 const char kEnableExtensionActivityLogTesting[] = | 468 const char kEnableExtensionActivityLogTesting[] = |
| 467 "enable-extension-activity-log-testing"; | 469 "enable-extension-activity-log-testing"; |
| 468 | 470 |
| 469 // Enable the fast unload controller, which speeds up tab/window close by | 471 // Enable the fast unload controller, which speeds up tab/window close by |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 | 1377 |
| 1376 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
| 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1378 // | 1380 // |
| 1379 // You were going to just dump your switches here, weren't you? Instead, please | 1381 // You were going to just dump your switches here, weren't you? Instead, please |
| 1380 // put them in alphabetical order above, or in order inside the appropriate | 1382 // put them in alphabetical order above, or in order inside the appropriate |
| 1381 // ifdef at the bottom. The order should match the header. | 1383 // ifdef at the bottom. The order should match the header. |
| 1382 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1383 | 1385 |
| 1384 } // namespace switches | 1386 } // namespace switches |
| OLD | NEW |