Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: chrome/common/chrome_switches.h

Issue 10885047: Metro mode switching (chrome side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 extern const char kEnableExposeForTabs[]; 430 extern const char kEnableExposeForTabs[];
431 extern const char kKeychainReauthorize[]; 431 extern const char kKeychainReauthorize[];
432 extern const char kRelauncherProcess[]; 432 extern const char kRelauncherProcess[];
433 extern const char kUseMockKeychain[]; 433 extern const char kUseMockKeychain[];
434 #endif 434 #endif
435 435
436 #if defined(OS_WIN) 436 #if defined(OS_WIN)
437 extern const char kDisableDesktopShortcuts[]; 437 extern const char kDisableDesktopShortcuts[];
438 extern const char kEnableSyncCredentialCaching[]; 438 extern const char kEnableSyncCredentialCaching[];
439 extern const char kForceImmersive[]; 439 extern const char kForceImmersive[];
440 extern const char kForceDesktop[];
441 extern const char kModeSwitch[];
440 extern const char kPrintRaster[]; 442 extern const char kPrintRaster[];
441 extern const char kRelaunchShortcut[]; 443 extern const char kRelaunchShortcut[];
442 extern const char kWaitForHandle[]; 444 extern const char kWaitForMutex[];
443 #endif 445 #endif
444 446
445 #if defined(USE_AURA) 447 #if defined(USE_AURA)
446 extern const char kDisableTCVA[]; 448 extern const char kDisableTCVA[];
447 extern const char kOpenAsh[]; 449 extern const char kOpenAsh[];
448 #endif 450 #endif
449 451
450 #ifndef NDEBUG 452 #ifndef NDEBUG
451 extern const char kFileManagerExtensionPath[]; 453 extern const char kFileManagerExtensionPath[];
452 extern const char kDumpProfileDependencyGraph[]; 454 extern const char kDumpProfileDependencyGraph[];
453 #endif 455 #endif
454 456
455 #if defined(GOOGLE_CHROME_BUILD) 457 #if defined(GOOGLE_CHROME_BUILD)
456 extern const char kDisablePrintPreview[]; 458 extern const char kDisablePrintPreview[];
457 #else 459 #else
458 extern const char kEnablePrintPreview[]; 460 extern const char kEnablePrintPreview[];
459 #endif 461 #endif
460 462
461 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 463 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
462 // alphabetical order, or in one of the ifdefs (also in order in each section). 464 // alphabetical order, or in one of the ifdefs (also in order in each section).
463 465
464 } // namespace switches 466 } // namespace switches
465 467
466 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 468 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698