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