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