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

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

Issue 220373003: Prevent Chrome from quitting when apps are open. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 years, 8 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 406 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
407 extern const char kPasswordStore[]; 407 extern const char kPasswordStore[];
408 #endif 408 #endif
409 409
410 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 410 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
411 extern const char kEnableSpeechDispatcher[]; 411 extern const char kEnableSpeechDispatcher[];
412 extern const char kMigrateDataDirForSxS[]; 412 extern const char kMigrateDataDirForSxS[];
413 #endif 413 #endif
414 414
415 #if defined(OS_MACOSX) 415 #if defined(OS_MACOSX)
416 extern const char kAppsKeepChromeAlive[];
416 extern const char kDisableAppShims[]; 417 extern const char kDisableAppShims[];
417 extern const char kDisableSystemFullscreenForTesting[]; 418 extern const char kDisableSystemFullscreenForTesting[];
418 extern const char kEnableSimplifiedFullscreen[]; 419 extern const char kEnableSimplifiedFullscreen[];
419 extern const char kRelauncherProcess[]; 420 extern const char kRelauncherProcess[];
420 #endif 421 #endif
421 422
422 #if defined(OS_WIN) 423 #if defined(OS_WIN)
423 extern const char kEnableCloudPrintXps[]; 424 extern const char kEnableCloudPrintXps[];
424 extern const char kEnableProfileShortcutManager[]; 425 extern const char kEnableProfileShortcutManager[];
425 extern const char kForceDesktop[]; 426 extern const char kForceDesktop[];
(...skipping 19 matching lines...) Expand all
445 #else 446 #else
446 extern const char kEnablePrintPreview[]; 447 extern const char kEnablePrintPreview[];
447 #endif 448 #endif
448 449
449 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 450 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
450 // alphabetical order, or in one of the ifdefs (also in order in each section). 451 // alphabetical order, or in one of the ifdefs (also in order in each section).
451 452
452 } // namespace switches 453 } // namespace switches
453 454
454 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 455 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698