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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1158 | 1158 |
1159 // Whether to show the image-based login. | 1159 // Whether to show the image-based login. |
1160 const char kEnableLoginImages[] = "enable-login-images"; | 1160 const char kEnableLoginImages[] = "enable-login-images"; |
1161 | 1161 |
1162 // Enables mobile setup in a dialog. | 1162 // Enables mobile setup in a dialog. |
1163 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | 1163 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
1164 | 1164 |
1165 // Enables support for policy-configured networks. | 1165 // Enables support for policy-configured networks. |
1166 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1166 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1167 | 1167 |
| 1168 const char kEnableRetailMode[] = "enable-retail-mode"; |
| 1169 |
1168 // Rotates the screen in response to orientation changed events from dbus. Will | 1170 // Rotates the screen in response to orientation changed events from dbus. Will |
1169 // be reused for more generic sensors. | 1171 // be reused for more generic sensors. |
1170 const char kEnableSensors[] = "enable-sensors"; | 1172 const char kEnableSensors[] = "enable-sensors"; |
1171 | 1173 |
1172 // Enables static ip configuration. This flag should be removed when it's on by | 1174 // Enables static ip configuration. This flag should be removed when it's on by |
1173 // default. | 1175 // default. |
1174 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1176 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1175 | 1177 |
1176 // Enables Chrome-as-a-login-manager behavior. | 1178 // Enables Chrome-as-a-login-manager behavior. |
1177 const char kLoginManager[] = "login-manager"; | 1179 const char kLoginManager[] = "login-manager"; |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1333 | 1335 |
1334 // ----------------------------------------------------------------------------- | 1336 // ----------------------------------------------------------------------------- |
1335 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1336 // | 1338 // |
1337 // You were going to just dump your switches here, weren't you? Instead, please | 1339 // You were going to just dump your switches here, weren't you? Instead, please |
1338 // put them in alphabetical order above, or in order inside the appropriate | 1340 // put them in alphabetical order above, or in order inside the appropriate |
1339 // ifdef at the bottom. The order should match the header. | 1341 // ifdef at the bottom. The order should match the header. |
1340 // ----------------------------------------------------------------------------- | 1342 // ----------------------------------------------------------------------------- |
1341 | 1343 |
1342 } // namespace switches | 1344 } // namespace switches |
OLD | NEW |