| OLD | NEW |
| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 #if !defined(OS_MACOSX) | 379 #if !defined(OS_MACOSX) |
| 380 extern const char kKioskMode[]; | 380 extern const char kKioskMode[]; |
| 381 extern const char kKioskModePrinting[]; | 381 extern const char kKioskModePrinting[]; |
| 382 #endif | 382 #endif |
| 383 | 383 |
| 384 #if defined(OS_WIN) | 384 #if defined(OS_WIN) |
| 385 extern const char kDisableDesktopShortcuts[]; | 385 extern const char kDisableDesktopShortcuts[]; |
| 386 #endif | 386 #endif |
| 387 | 387 |
| 388 #if defined(TOOLKIT_VIEWS) | 388 #if defined(TOOLKIT_VIEWS) |
| 389 extern const char kDebugViewsPaint[]; | |
| 390 extern const char kTouchDevices[]; | 389 extern const char kTouchDevices[]; |
| 391 #endif | 390 #endif |
| 392 | 391 |
| 393 #ifndef NDEBUG | 392 #ifndef NDEBUG |
| 394 extern const char kFileManagerExtensionPath[]; | 393 extern const char kFileManagerExtensionPath[]; |
| 395 extern const char kDumpProfileDependencyGraph[]; | 394 extern const char kDumpProfileDependencyGraph[]; |
| 396 #endif | 395 #endif |
| 397 | 396 |
| 398 #if defined(GOOGLE_CHROME_BUILD) | 397 #if defined(GOOGLE_CHROME_BUILD) |
| 399 extern const char kDisablePrintPreview[]; | 398 extern const char kDisablePrintPreview[]; |
| 400 #else | 399 #else |
| 401 extern const char kEnablePrintPreview[]; | 400 extern const char kEnablePrintPreview[]; |
| 402 #endif | 401 #endif |
| 403 | 402 |
| 404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 405 // alphabetical order, or in one of the ifdefs (also in order in each section). | 404 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 406 | 405 |
| 407 } // namespace switches | 406 } // namespace switches |
| 408 | 407 |
| 409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |