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

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

Issue 176583002: [OS X] Wire up --use-mock-keychain command line flag to encryptor module (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 extern const char kMigrateDataDirForSxS[]; 441 extern const char kMigrateDataDirForSxS[];
442 #endif 442 #endif
443 443
444 #if defined(OS_MACOSX) 444 #if defined(OS_MACOSX)
445 extern const char kDisableAppShims[]; 445 extern const char kDisableAppShims[];
446 extern const char kDisableCoreAnimationLayerSquashing[]; 446 extern const char kDisableCoreAnimationLayerSquashing[];
447 extern const char kDisableSystemFullscreenForTesting[]; 447 extern const char kDisableSystemFullscreenForTesting[];
448 extern const char kEnableSimplifiedFullscreen[]; 448 extern const char kEnableSimplifiedFullscreen[];
449 extern const char kKeychainReauthorize[]; 449 extern const char kKeychainReauthorize[];
450 extern const char kRelauncherProcess[]; 450 extern const char kRelauncherProcess[];
451 extern const char kUseMockKeychain[];
452 #endif 451 #endif
453 452
454 #if defined(OS_WIN) 453 #if defined(OS_WIN)
455 extern const char kDebugPrint[]; 454 extern const char kDebugPrint[];
456 extern const char kEnableProfileShortcutManager[]; 455 extern const char kEnableProfileShortcutManager[];
457 extern const char kForceImmersive[]; 456 extern const char kForceImmersive[];
458 extern const char kForceDesktop[]; 457 extern const char kForceDesktop[];
459 extern const char kPrintRaster[]; 458 extern const char kPrintRaster[];
460 extern const char kRelaunchShortcut[]; 459 extern const char kRelaunchShortcut[];
461 extern const char kViewerConnect[]; 460 extern const char kViewerConnect[];
(...skipping 12 matching lines...) Expand all
474 #else 473 #else
475 extern const char kEnablePrintPreview[]; 474 extern const char kEnablePrintPreview[];
476 #endif 475 #endif
477 476
478 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 477 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
479 // alphabetical order, or in one of the ifdefs (also in order in each section). 478 // alphabetical order, or in one of the ifdefs (also in order in each section).
480 479
481 } // namespace switches 480 } // namespace switches
482 481
483 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 482 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698