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