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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 #endif | 357 #endif |
358 | 358 |
359 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 359 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
360 extern const char kMigrateDataDirForSxS[]; | 360 extern const char kMigrateDataDirForSxS[]; |
361 #endif | 361 #endif |
362 | 362 |
363 #if defined(OS_MACOSX) | 363 #if defined(OS_MACOSX) |
364 extern const char kAppsKeepChromeAliveInTests[]; | 364 extern const char kAppsKeepChromeAliveInTests[]; |
365 extern const char kDisableSystemFullscreenForTesting[]; | 365 extern const char kDisableSystemFullscreenForTesting[]; |
366 extern const char kEnableFullSizeContentView[]; | 366 extern const char kEnableFullSizeContentView[]; |
367 extern const char kEnableSimplifiedFullscreen[]; | |
368 extern const char kRelauncherProcess[]; | 367 extern const char kRelauncherProcess[]; |
369 #endif | 368 #endif |
370 | 369 |
371 #if defined(OS_WIN) | 370 #if defined(OS_WIN) |
372 extern const char kEnableCloudPrintXps[]; | 371 extern const char kEnableCloudPrintXps[]; |
373 extern const char kEnableProfileShortcutManager[]; | 372 extern const char kEnableProfileShortcutManager[]; |
374 extern const char kForceDesktop[]; | 373 extern const char kForceDesktop[]; |
375 extern const char kForceImmersive[]; | 374 extern const char kForceImmersive[]; |
376 extern const char kRelaunchShortcut[]; | 375 extern const char kRelaunchShortcut[]; |
377 extern const char kViewerLaunchViaAppId[]; | 376 extern const char kViewerLaunchViaAppId[]; |
(...skipping 17 matching lines...) Expand all Loading... |
395 | 394 |
396 bool AboutInSettingsEnabled(); | 395 bool AboutInSettingsEnabled(); |
397 bool SettingsWindowEnabled(); | 396 bool SettingsWindowEnabled(); |
398 | 397 |
399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 398 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
400 // alphabetical order, or in one of the ifdefs (also in order in each section). | 399 // alphabetical order, or in one of the ifdefs (also in order in each section). |
401 | 400 |
402 } // namespace switches | 401 } // namespace switches |
403 | 402 |
404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 403 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |