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

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

Issue 10699040: Relaunch Chrome in metro-mode with the help of a helper process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 #pragma once 9 #pragma once
10 10
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 extern const char kRelauncherProcess[]; 401 extern const char kRelauncherProcess[];
402 extern const char kUseMockKeychain[]; 402 extern const char kUseMockKeychain[];
403 #endif 403 #endif
404 404
405 #if !defined(OS_MACOSX) 405 #if !defined(OS_MACOSX)
406 extern const char kKioskMode[]; 406 extern const char kKioskMode[];
407 extern const char kKioskModePrinting[]; 407 extern const char kKioskModePrinting[];
408 #endif 408 #endif
409 409
410 #if defined(OS_WIN) 410 #if defined(OS_WIN)
411 extern const char kActivateApp[];
411 extern const char kDisableDesktopShortcuts[]; 412 extern const char kDisableDesktopShortcuts[];
413 extern const char kWaitForHandle[];
412 #endif 414 #endif
413 415
414 #if defined(USE_AURA) 416 #if defined(USE_AURA)
415 extern const char kDisableTCVA[]; 417 extern const char kDisableTCVA[];
416 extern const char kOpenAsh[]; 418 extern const char kOpenAsh[];
417 #endif 419 #endif
418 420
419 #ifndef NDEBUG 421 #ifndef NDEBUG
420 extern const char kFileManagerExtensionPath[]; 422 extern const char kFileManagerExtensionPath[];
421 extern const char kDumpProfileDependencyGraph[]; 423 extern const char kDumpProfileDependencyGraph[];
422 #endif 424 #endif
423 425
424 #if defined(GOOGLE_CHROME_BUILD) 426 #if defined(GOOGLE_CHROME_BUILD)
425 extern const char kDisablePrintPreview[]; 427 extern const char kDisablePrintPreview[];
426 #else 428 #else
427 extern const char kEnablePrintPreview[]; 429 extern const char kEnablePrintPreview[];
428 #endif 430 #endif
429 431
430 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 432 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
431 // alphabetical order, or in one of the ifdefs (also in order in each section). 433 // alphabetical order, or in one of the ifdefs (also in order in each section).
432 434
433 } // namespace switches 435 } // namespace switches
434 436
435 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 437 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698