OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 // Enables device policy support on ChromeOS. | 1086 // Enables device policy support on ChromeOS. |
1087 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1087 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1088 | 1088 |
1089 // Enables the redirection of viewable document requests to the Google Document | 1089 // Enables the redirection of viewable document requests to the Google Document |
1090 // Viewer. | 1090 // Viewer. |
1091 const char kEnableGView[] = "enable-gview"; | 1091 const char kEnableGView[] = "enable-gview"; |
1092 | 1092 |
1093 // Whether to show the image-based login. | 1093 // Whether to show the image-based login. |
1094 const char kEnableLoginImages[] = "enable-login-images"; | 1094 const char kEnableLoginImages[] = "enable-login-images"; |
1095 | 1095 |
| 1096 // Enables mobile setup in a dialog. |
| 1097 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
| 1098 |
1096 // Rotates the screen in response to orientation changed events from dbus. Will | 1099 // Rotates the screen in response to orientation changed events from dbus. Will |
1097 // be reused for more generic sensors. | 1100 // be reused for more generic sensors. |
1098 const char kEnableSensors[] = "enable-sensors"; | 1101 const char kEnableSensors[] = "enable-sensors"; |
1099 | 1102 |
1100 // Enables static ip configuration. This flag should be removed when it's on by | 1103 // Enables static ip configuration. This flag should be removed when it's on by |
1101 // default. | 1104 // default. |
1102 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; | 1105 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; |
1103 | 1106 |
1104 // Enables Chrome-as-a-login-manager behavior. | 1107 // Enables Chrome-as-a-login-manager behavior. |
1105 const char kLoginManager[] = "login-manager"; | 1108 const char kLoginManager[] = "login-manager"; |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1267 | 1270 |
1268 // ----------------------------------------------------------------------------- | 1271 // ----------------------------------------------------------------------------- |
1269 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1272 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1270 // | 1273 // |
1271 // You were going to just dump your switches here, weren't you? Instead, please | 1274 // You were going to just dump your switches here, weren't you? Instead, please |
1272 // put them in alphabetical order above, or in order inside the appropriate | 1275 // put them in alphabetical order above, or in order inside the appropriate |
1273 // ifdef at the bottom. The order should match the header. | 1276 // ifdef at the bottom. The order should match the header. |
1274 // ----------------------------------------------------------------------------- | 1277 // ----------------------------------------------------------------------------- |
1275 | 1278 |
1276 } // namespace switches | 1279 } // namespace switches |
OLD | NEW |