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