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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 // Enable device discovery notifications. | 407 // Enable device discovery notifications. |
408 const char kEnableDeviceDiscoveryNotifications[] = | 408 const char kEnableDeviceDiscoveryNotifications[] = |
409 "enable-device-discovery-notifications"; | 409 "enable-device-discovery-notifications"; |
410 | 410 |
411 // Enables Domain Reliability Monitoring. | 411 // Enables Domain Reliability Monitoring. |
412 const char kEnableDomainReliability[] = "enable-domain-reliability"; | 412 const char kEnableDomainReliability[] = "enable-domain-reliability"; |
413 | 413 |
414 // Download Notification. (value is "", "enabled" or "disabled") | 414 // Download Notification. (value is "", "enabled" or "disabled") |
415 const char kEnableDownloadNotification[] = "enable-download-notification"; | 415 const char kEnableDownloadNotification[] = "enable-download-notification"; |
416 | 416 |
417 // Enables experimentation with ephemeral apps to be launched from the webstore. | |
418 const char kEnableEphemeralAppsInWebstore[] = | |
419 "enable-ephemeral-apps-in-webstore"; | |
420 | |
421 // Enables experimental hotword features specific to always-on. | 417 // Enables experimental hotword features specific to always-on. |
422 const char kEnableExperimentalHotwordHardware[] = "enable-hotword-hardware"; | 418 const char kEnableExperimentalHotwordHardware[] = "enable-hotword-hardware"; |
423 | 419 |
424 // Enables logging for extension activity. | 420 // Enables logging for extension activity. |
425 const char kEnableExtensionActivityLogging[] = | 421 const char kEnableExtensionActivityLogging[] = |
426 "enable-extension-activity-logging"; | 422 "enable-extension-activity-logging"; |
427 | 423 |
428 const char kEnableExtensionActivityLogTesting[] = | 424 const char kEnableExtensionActivityLogTesting[] = |
429 "enable-extension-activity-log-testing"; | 425 "enable-extension-activity-log-testing"; |
430 | 426 |
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 | 1398 |
1403 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1405 // | 1401 // |
1406 // You were going to just dump your switches here, weren't you? Instead, please | 1402 // You were going to just dump your switches here, weren't you? Instead, please |
1407 // put them in alphabetical order above, or in order inside the appropriate | 1403 // put them in alphabetical order above, or in order inside the appropriate |
1408 // ifdef at the bottom. The order should match the header. | 1404 // ifdef at the bottom. The order should match the header. |
1409 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
1410 | 1406 |
1411 } // namespace switches | 1407 } // namespace switches |
OLD | NEW |