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 // 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 extern const char kWinHttpProxyResolver[]; | 294 extern const char kWinHttpProxyResolver[]; |
295 | 295 |
296 #if defined(OS_CHROMEOS) | 296 #if defined(OS_CHROMEOS) |
297 extern const char kWebUILockScreen[]; | 297 extern const char kWebUILockScreen[]; |
298 extern const char kWebUILogin[]; | 298 extern const char kWebUILogin[]; |
299 extern const char kSkipOAuthLogin[]; | 299 extern const char kSkipOAuthLogin[]; |
300 extern const char kEnableBluetooth[]; | 300 extern const char kEnableBluetooth[]; |
301 extern const char kEnableDevicePolicy[]; | 301 extern const char kEnableDevicePolicy[]; |
302 extern const char kEnableGView[]; | 302 extern const char kEnableGView[]; |
303 extern const char kEnableLoginImages[]; | 303 extern const char kEnableLoginImages[]; |
| 304 extern const char kEnableMobileSetupDialog[]; |
304 extern const char kEnableSensors[]; | 305 extern const char kEnableSensors[]; |
305 extern const char kEnableStaticIPConfig[]; | 306 extern const char kEnableStaticIPConfig[]; |
306 extern const char kLoginManager[]; | 307 extern const char kLoginManager[]; |
307 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 308 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
308 // purposes. | 309 // purposes. |
309 extern const char kLoginScreen[]; | 310 extern const char kLoginScreen[]; |
310 extern const char kLoginScreenSize[]; | 311 extern const char kLoginScreenSize[]; |
311 extern const char kMemoryWidget[]; | 312 extern const char kMemoryWidget[]; |
312 extern const char kTestLoadLibcros[]; | 313 extern const char kTestLoadLibcros[]; |
313 extern const char kLoginProfile[]; | 314 extern const char kLoginProfile[]; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 bool IsPrintPreviewEnabled(); | 372 bool IsPrintPreviewEnabled(); |
372 | 373 |
373 bool IsInBrowserThumbnailingEnabled(); | 374 bool IsInBrowserThumbnailingEnabled(); |
374 | 375 |
375 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 376 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
376 // alphabetical order, or in one of the ifdefs (also in order in each section). | 377 // alphabetical order, or in one of the ifdefs (also in order in each section). |
377 | 378 |
378 } // namespace switches | 379 } // namespace switches |
379 | 380 |
380 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 381 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |