| 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 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 // Enables bluetooth support on ChromeOS. | 1190 // Enables bluetooth support on ChromeOS. |
| 1191 const char kEnableBluetooth[] = "enable-bluetooth"; | 1191 const char kEnableBluetooth[] = "enable-bluetooth"; |
| 1192 | 1192 |
| 1193 // Enables device policy support on ChromeOS. | 1193 // Enables device policy support on ChromeOS. |
| 1194 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1194 const char kEnableDevicePolicy[] = "enable-device-policy"; |
| 1195 | 1195 |
| 1196 // Enables the redirection of viewable document requests to the Google Document | 1196 // Enables the redirection of viewable document requests to the Google Document |
| 1197 // Viewer. | 1197 // Viewer. |
| 1198 const char kEnableGView[] = "enable-gview"; | 1198 const char kEnableGView[] = "enable-gview"; |
| 1199 | 1199 |
| 1200 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
| 1201 |
| 1200 // Whether to show the image-based login. | 1202 // Whether to show the image-based login. |
| 1201 const char kEnableLoginImages[] = "enable-login-images"; | 1203 const char kEnableLoginImages[] = "enable-login-images"; |
| 1202 | 1204 |
| 1203 // Enables mobile setup in a dialog. | 1205 // Enables mobile setup in a dialog. |
| 1204 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | 1206 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
| 1205 | 1207 |
| 1206 // Enables support for policy-configured networks. | 1208 // Enables support for policy-configured networks. |
| 1207 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1209 const char kEnableONCPolicy[] = "enable-onc-policy"; |
| 1208 | 1210 |
| 1209 // Rotates the screen in response to orientation changed events from dbus. Will | 1211 // Rotates the screen in response to orientation changed events from dbus. Will |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 | 1369 |
| 1368 // ----------------------------------------------------------------------------- | 1370 // ----------------------------------------------------------------------------- |
| 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1370 // | 1372 // |
| 1371 // You were going to just dump your switches here, weren't you? Instead, please | 1373 // You were going to just dump your switches here, weren't you? Instead, please |
| 1372 // put them in alphabetical order above, or in order inside the appropriate | 1374 // put them in alphabetical order above, or in order inside the appropriate |
| 1373 // ifdef at the bottom. The order should match the header. | 1375 // ifdef at the bottom. The order should match the header. |
| 1374 // ----------------------------------------------------------------------------- | 1376 // ----------------------------------------------------------------------------- |
| 1375 | 1377 |
| 1376 } // namespace switches | 1378 } // namespace switches |
| OLD | NEW |