| 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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 extern const char kWindowPosition[]; | 313 extern const char kWindowPosition[]; |
| 314 extern const char kWindowSize[]; | 314 extern const char kWindowSize[]; |
| 315 extern const char kWinHttpProxyResolver[]; | 315 extern const char kWinHttpProxyResolver[]; |
| 316 extern const char kMemoryWidget[]; | 316 extern const char kMemoryWidget[]; |
| 317 | 317 |
| 318 #if defined(OS_CHROMEOS) | 318 #if defined(OS_CHROMEOS) |
| 319 extern const char kSkipOAuthLogin[]; | 319 extern const char kSkipOAuthLogin[]; |
| 320 extern const char kEnableBluetooth[]; | 320 extern const char kEnableBluetooth[]; |
| 321 extern const char kEnableDevicePolicy[]; | 321 extern const char kEnableDevicePolicy[]; |
| 322 extern const char kEnableGView[]; | 322 extern const char kEnableGView[]; |
| 323 extern const char kEnableKioskMode[]; |
| 323 extern const char kEnableMobileSetupDialog[]; | 324 extern const char kEnableMobileSetupDialog[]; |
| 324 extern const char kEnableONCPolicy[]; | 325 extern const char kEnableONCPolicy[]; |
| 325 extern const char kEnableSensors[]; | 326 extern const char kEnableSensors[]; |
| 326 extern const char kEnableStaticIPConfig[]; | 327 extern const char kEnableStaticIPConfig[]; |
| 328 extern const char kKioskModeScreensaverPath[]; |
| 327 extern const char kLoginManager[]; | 329 extern const char kLoginManager[]; |
| 328 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 330 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
| 329 // purposes. | 331 // purposes. |
| 330 extern const char kLoginScreen[]; | 332 extern const char kLoginScreen[]; |
| 331 extern const char kLoginScreenSize[]; | 333 extern const char kLoginScreenSize[]; |
| 332 extern const char kTestLoadLibcros[]; | 334 extern const char kTestLoadLibcros[]; |
| 333 extern const char kLoginProfile[]; | 335 extern const char kLoginProfile[]; |
| 334 extern const char kLoginUser[]; | 336 extern const char kLoginUser[]; |
| 335 extern const char kLoginPassword[]; | 337 extern const char kLoginPassword[]; |
| 336 extern const char kGuestSession[]; | 338 extern const char kGuestSession[]; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 #if defined(USE_AURA) | 390 #if defined(USE_AURA) |
| 389 extern const char kTestCompositor[]; | 391 extern const char kTestCompositor[]; |
| 390 #endif | 392 #endif |
| 391 | 393 |
| 392 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 394 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 393 // alphabetical order, or in one of the ifdefs (also in order in each section). | 395 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 394 | 396 |
| 395 } // namespace switches | 397 } // namespace switches |
| 396 | 398 |
| 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 399 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |