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 | 314 |
315 #if defined(OS_CHROMEOS) | 315 #if defined(OS_CHROMEOS) |
316 extern const char kWebUILogin[]; | 316 extern const char kWebUILogin[]; |
317 extern const char kSkipOAuthLogin[]; | 317 extern const char kSkipOAuthLogin[]; |
318 extern const char kEnableBluetooth[]; | 318 extern const char kEnableBluetooth[]; |
319 extern const char kEnableDevicePolicy[]; | 319 extern const char kEnableDevicePolicy[]; |
320 extern const char kEnableGView[]; | 320 extern const char kEnableGView[]; |
321 extern const char kEnableLoginImages[]; | 321 extern const char kEnableLoginImages[]; |
322 extern const char kEnableMobileSetupDialog[]; | 322 extern const char kEnableMobileSetupDialog[]; |
323 extern const char kEnableONCPolicy[]; | 323 extern const char kEnableONCPolicy[]; |
| 324 extern const char kEnableRetailMode[]; |
324 extern const char kEnableSensors[]; | 325 extern const char kEnableSensors[]; |
325 extern const char kEnableStaticIPConfig[]; | 326 extern const char kEnableStaticIPConfig[]; |
326 extern const char kLoginManager[]; | 327 extern const char kLoginManager[]; |
327 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 328 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
328 // purposes. | 329 // purposes. |
329 extern const char kLoginScreen[]; | 330 extern const char kLoginScreen[]; |
330 extern const char kLoginScreenSize[]; | 331 extern const char kLoginScreenSize[]; |
331 extern const char kTestLoadLibcros[]; | 332 extern const char kTestLoadLibcros[]; |
332 extern const char kLoginProfile[]; | 333 extern const char kLoginProfile[]; |
333 extern const char kLoginUser[]; | 334 extern const char kLoginUser[]; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 #if defined(USE_AURA) | 390 #if defined(USE_AURA) |
390 extern const char kTestCompositor[]; | 391 extern const char kTestCompositor[]; |
391 #endif | 392 #endif |
392 | 393 |
393 // 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 |
394 // 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). |
395 | 396 |
396 } // namespace switches | 397 } // namespace switches |
397 | 398 |
398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 399 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |