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

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: 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 405 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
406 extern const char kPasswordStore[]; 406 extern const char kPasswordStore[];
407 #endif 407 #endif
408 408
409 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 409 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
410 extern const char kEnableSpeechDispatcher[]; 410 extern const char kEnableSpeechDispatcher[];
411 extern const char kMigrateDataDirForSxS[]; 411 extern const char kMigrateDataDirForSxS[];
412 #endif 412 #endif
413 413
414 #if defined(OS_MACOSX) 414 #if defined(OS_MACOSX)
415 extern const char kAppsKeepChromeAlive[];
415 extern const char kDisableAppShims[]; 416 extern const char kDisableAppShims[];
416 extern const char kDisableSystemFullscreenForTesting[]; 417 extern const char kDisableSystemFullscreenForTesting[];
417 extern const char kEnableSimplifiedFullscreen[]; 418 extern const char kEnableSimplifiedFullscreen[];
418 extern const char kRelauncherProcess[]; 419 extern const char kRelauncherProcess[];
419 #endif 420 #endif
420 421
421 #if defined(OS_WIN) 422 #if defined(OS_WIN)
422 extern const char kEnableCloudPrintXps[]; 423 extern const char kEnableCloudPrintXps[];
423 extern const char kEnableProfileShortcutManager[]; 424 extern const char kEnableProfileShortcutManager[];
424 extern const char kForceDesktop[]; 425 extern const char kForceDesktop[];
(...skipping 19 matching lines...) Expand all
444 #else 445 #else
445 extern const char kEnablePrintPreview[]; 446 extern const char kEnablePrintPreview[];
446 #endif 447 #endif
447 448
448 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 449 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
449 // alphabetical order, or in one of the ifdefs (also in order in each section). 450 // alphabetical order, or in one of the ifdefs (also in order in each section).
450 451
451 } // namespace switches 452 } // namespace switches
452 453
453 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 454 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698