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

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

Issue 11030017: Add context to gfx::Screen calls in support of simultaneous desktop+ash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tidy Created 8 years, 2 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 kForceImmersive[]; 430 extern const char kForceImmersive[];
431 extern const char kForceDesktop[]; 431 extern const char kForceDesktop[];
432 extern const char kModeSwitch[]; 432 extern const char kModeSwitch[];
433 extern const char kPrintRaster[]; 433 extern const char kPrintRaster[];
434 extern const char kRelaunchShortcut[]; 434 extern const char kRelaunchShortcut[];
435 extern const char kWaitForMutex[]; 435 extern const char kWaitForMutex[];
436 #endif 436 #endif
437 437
438 #if defined(USE_AURA) 438 #if defined(USE_AURA)
439 extern const char kDisableTCVA[]; 439 extern const char kDisableTCVA[];
440 extern const char kOpenAsh[];
441 #endif
442
443 #if defined(USE_ASH)
444 extern const char kEnableAsh[];
445 #endif 440 #endif
446 441
447 #ifndef NDEBUG 442 #ifndef NDEBUG
448 extern const char kFileManagerExtensionPath[]; 443 extern const char kFileManagerExtensionPath[];
449 extern const char kDumpProfileDependencyGraph[]; 444 extern const char kDumpProfileDependencyGraph[];
450 #endif 445 #endif
451 446
452 #if defined(GOOGLE_CHROME_BUILD) 447 #if defined(GOOGLE_CHROME_BUILD)
453 extern const char kDisablePrintPreview[]; 448 extern const char kDisablePrintPreview[];
454 #else 449 #else
455 extern const char kEnablePrintPreview[]; 450 extern const char kEnablePrintPreview[];
456 #endif 451 #endif
457 452
458 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 453 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
459 // alphabetical order, or in one of the ifdefs (also in order in each section). 454 // alphabetical order, or in one of the ifdefs (also in order in each section).
460 455
461 } // namespace switches 456 } // namespace switches
462 457
463 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 458 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698