| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 // mode. Should completely disable extensions, sync and bookmarks. | 127 // mode. Should completely disable extensions, sync and bookmarks. |
| 128 const char kGuestSession[] = "bwsi"; | 128 const char kGuestSession[] = "bwsi"; |
| 129 | 129 |
| 130 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for | 130 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for |
| 131 // Chromeboxes. | 131 // Chromeboxes. |
| 132 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; | 132 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; |
| 133 | 133 |
| 134 // If true, the Chromebook has a keyboard with a diamond key. | 134 // If true, the Chromebook has a keyboard with a diamond key. |
| 135 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; | 135 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; |
| 136 | 136 |
| 137 // Defines user homedir. This defaults to primary user homedir. |
| 138 const char kHomedir[] = "homedir"; |
| 139 |
| 137 // If true, profile selection in UserManager will always return active user's | 140 // If true, profile selection in UserManager will always return active user's |
| 138 // profile. | 141 // profile. |
| 139 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we | 142 // TODO(nkostlyev): http://crbug.com/364604 - Get rid of this switch after we |
| 140 // turn on multi-profile feature on ChromeOS. | 143 // turn on multi-profile feature on ChromeOS. |
| 141 const char kIgnoreUserProfileMappingForTests[] = | 144 const char kIgnoreUserProfileMappingForTests[] = |
| 142 "ignore-user-profile-mapping-for-tests"; | 145 "ignore-user-profile-mapping-for-tests"; |
| 143 | 146 |
| 144 // Path for the screensaver used in Kiosk mode | 147 // Path for the screensaver used in Kiosk mode |
| 145 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; | 148 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; |
| 146 | 149 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; | 206 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; |
| 204 | 207 |
| 205 // Forces first-run UI to be shown for every login. | 208 // Forces first-run UI to be shown for every login. |
| 206 const char kForceFirstRunUI[] = "force-first-run-ui"; | 209 const char kForceFirstRunUI[] = "force-first-run-ui"; |
| 207 | 210 |
| 208 // Enables testing for auto update UI. | 211 // Enables testing for auto update UI. |
| 209 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; | 212 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; |
| 210 | 213 |
| 211 } // namespace switches | 214 } // namespace switches |
| 212 } // namespace chromeos | 215 } // namespace chromeos |
| OLD | NEW |