| 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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 | 1217 |
| 1218 // Enable Kiosk mode for ChromeOS | 1218 // Enable Kiosk mode for ChromeOS |
| 1219 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1219 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 1220 | 1220 |
| 1221 // Enables mobile setup in a dialog. | 1221 // Enables mobile setup in a dialog. |
| 1222 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | 1222 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
| 1223 | 1223 |
| 1224 // Enables support for policy-configured networks. | 1224 // Enables support for policy-configured networks. |
| 1225 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1225 const char kEnableONCPolicy[] = "enable-onc-policy"; |
| 1226 | 1226 |
| 1227 // Rotates the screen in response to orientation changed events from dbus. Will | |
| 1228 // be reused for more generic sensors. | |
| 1229 const char kEnableSensors[] = "enable-sensors"; | |
| 1230 | |
| 1231 // Enables static ip configuration. This flag should be removed when it's on by | 1227 // Enables static ip configuration. This flag should be removed when it's on by |
| 1232 // default. | 1228 // default. |
| 1233 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1229 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
| 1234 | 1230 |
| 1235 // Path for the screensaver used in Kiosk mode | 1231 // Path for the screensaver used in Kiosk mode |
| 1236 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; | 1232 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; |
| 1237 | 1233 |
| 1238 // Enables Chrome-as-a-login-manager behavior. | 1234 // Enables Chrome-as-a-login-manager behavior. |
| 1239 const char kLoginManager[] = "login-manager"; | 1235 const char kLoginManager[] = "login-manager"; |
| 1240 | 1236 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1381 | 1377 |
| 1382 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
| 1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1384 // | 1380 // |
| 1385 // You were going to just dump your switches here, weren't you? Instead, please | 1381 // You were going to just dump your switches here, weren't you? Instead, please |
| 1386 // put them in alphabetical order above, or in order inside the appropriate | 1382 // put them in alphabetical order above, or in order inside the appropriate |
| 1387 // ifdef at the bottom. The order should match the header. | 1383 // ifdef at the bottom. The order should match the header. |
| 1388 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1389 | 1385 |
| 1390 } // namespace switches | 1386 } // namespace switches |
| OLD | NEW |