| 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 "chromeos/chromeos_switches.h" | 5 #include "chromeos/chromeos_switches.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Path for app's OEM manifest file. | 10 // Path for app's OEM manifest file. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // testing. | 61 // testing. |
| 62 const char kDisableOfficeEditingComponentApp[] = | 62 const char kDisableOfficeEditingComponentApp[] = |
| 63 "disable-office-editing-component-extension"; | 63 "disable-office-editing-component-extension"; |
| 64 | 64 |
| 65 // Disables rollback option on reset screen. | 65 // Disables rollback option on reset screen. |
| 66 const char kDisableRollbackOption[] = "disable-rollback-option"; | 66 const char kDisableRollbackOption[] = "disable-rollback-option"; |
| 67 | 67 |
| 68 // Disables volume adjust sound. | 68 // Disables volume adjust sound. |
| 69 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; | 69 const char kDisableVolumeAdjustSound[] = "disable-volume-adjust-sound"; |
| 70 | 70 |
| 71 // Disables wake on wifi features. |
| 72 const char kDisableWakeOnWifi[] = "disable-wake-on-wifi"; |
| 73 |
| 71 // Disables notifications about captive portals in session. | 74 // Disables notifications about captive portals in session. |
| 72 const char kDisableNetworkPortalNotification[] = | 75 const char kDisableNetworkPortalNotification[] = |
| 73 "disable-network-portal-notification"; | 76 "disable-network-portal-notification"; |
| 74 | 77 |
| 75 // Enables switching between different cellular carriers from the UI. | 78 // Enables switching between different cellular carriers from the UI. |
| 76 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 79 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| 77 | 80 |
| 78 // Enables cloud backup feature. | 81 // Enables cloud backup feature. |
| 79 const char kEnableCloudBackup[] = "enable-cloud-backup"; | 82 const char kEnableCloudBackup[] = "enable-cloud-backup"; |
| 80 | 83 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 266 |
| 264 // Screenshot testing: specifies the directoru where artifacts will be stored. | 267 // Screenshot testing: specifies the directoru where artifacts will be stored. |
| 265 const char kArtifactsDir[] = "artifacts-dir"; | 268 const char kArtifactsDir[] = "artifacts-dir"; |
| 266 | 269 |
| 267 // Bypass proxy for captive portal authorization. | 270 // Bypass proxy for captive portal authorization. |
| 268 const char kEnableCaptivePortalBypassProxy[] = | 271 const char kEnableCaptivePortalBypassProxy[] = |
| 269 "enable-captive-portal-bypass-proxy"; | 272 "enable-captive-portal-bypass-proxy"; |
| 270 | 273 |
| 271 } // namespace switches | 274 } // namespace switches |
| 272 } // namespace chromeos | 275 } // namespace chromeos |
| OLD | NEW |