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 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1172 // Enables bluetooth support on ChromeOS. | 1172 // Enables bluetooth support on ChromeOS. |
1173 const char kEnableBluetooth[] = "enable-bluetooth"; | 1173 const char kEnableBluetooth[] = "enable-bluetooth"; |
1174 | 1174 |
1175 // Enables device policy support on ChromeOS. | 1175 // Enables device policy support on ChromeOS. |
1176 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1176 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1177 | 1177 |
1178 // Enables the redirection of viewable document requests to the Google Document | 1178 // Enables the redirection of viewable document requests to the Google Document |
1179 // Viewer. | 1179 // Viewer. |
1180 const char kEnableGView[] = "enable-gview"; | 1180 const char kEnableGView[] = "enable-gview"; |
1181 | 1181 |
| 1182 // Enable Kiosk mode for ChromeOS |
| 1183 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 1184 |
1182 // Enables mobile setup in a dialog. | 1185 // Enables mobile setup in a dialog. |
1183 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | 1186 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
1184 | 1187 |
1185 // Enables support for policy-configured networks. | 1188 // Enables support for policy-configured networks. |
1186 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1189 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1187 | 1190 |
1188 // Rotates the screen in response to orientation changed events from dbus. Will | 1191 // Rotates the screen in response to orientation changed events from dbus. Will |
1189 // be reused for more generic sensors. | 1192 // be reused for more generic sensors. |
1190 const char kEnableSensors[] = "enable-sensors"; | 1193 const char kEnableSensors[] = "enable-sensors"; |
1191 | 1194 |
1192 // Enables static ip configuration. This flag should be removed when it's on by | 1195 // Enables static ip configuration. This flag should be removed when it's on by |
1193 // default. | 1196 // default. |
1194 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1197 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1195 | 1198 |
| 1199 // Path for the screensaver used in Kiosk mode |
| 1200 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; |
| 1201 |
1196 // Enables Chrome-as-a-login-manager behavior. | 1202 // Enables Chrome-as-a-login-manager behavior. |
1197 const char kLoginManager[] = "login-manager"; | 1203 const char kLoginManager[] = "login-manager"; |
1198 | 1204 |
1199 // Allows to override the first login screen. The value should be the name of | 1205 // Allows to override the first login screen. The value should be the name of |
1200 // the first login screen to show (see | 1206 // the first login screen to show (see |
1201 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1207 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
1202 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the | 1208 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the |
1203 // switch is no longer needed for testing. | 1209 // switch is no longer needed for testing. |
1204 const char kLoginScreen[] = "login-screen"; | 1210 const char kLoginScreen[] = "login-screen"; |
1205 | 1211 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 | 1340 |
1335 // ----------------------------------------------------------------------------- | 1341 // ----------------------------------------------------------------------------- |
1336 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1342 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1337 // | 1343 // |
1338 // You were going to just dump your switches here, weren't you? Instead, please | 1344 // You were going to just dump your switches here, weren't you? Instead, please |
1339 // put them in alphabetical order above, or in order inside the appropriate | 1345 // put them in alphabetical order above, or in order inside the appropriate |
1340 // ifdef at the bottom. The order should match the header. | 1346 // ifdef at the bottom. The order should match the header. |
1341 // ----------------------------------------------------------------------------- | 1347 // ----------------------------------------------------------------------------- |
1342 | 1348 |
1343 } // namespace switches | 1349 } // namespace switches |
OLD | NEW |