| 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 extern const char kTabletUI[]; | 395 extern const char kTabletUI[]; |
| 396 extern const char kEnableNewNTP[]; | 396 extern const char kEnableNewNTP[]; |
| 397 #endif | 397 #endif |
| 398 | 398 |
| 399 #if defined(USE_ASH) | 399 #if defined(USE_ASH) |
| 400 extern const char kAshDisableTabScrubbing[]; | 400 extern const char kAshDisableTabScrubbing[]; |
| 401 extern const char kOpenAsh[]; | 401 extern const char kOpenAsh[]; |
| 402 #endif | 402 #endif |
| 403 | 403 |
| 404 #if defined(OS_POSIX) | 404 #if defined(OS_POSIX) |
| 405 extern const char kEnableCrashReporter[]; | |
| 406 extern const char kEnableCrashReporterForTesting[]; | 405 extern const char kEnableCrashReporterForTesting[]; |
| 407 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 406 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 408 extern const char kPasswordStore[]; | 407 extern const char kPasswordStore[]; |
| 409 #endif | 408 #endif |
| 410 #endif | 409 #endif |
| 411 | 410 |
| 412 #if defined(OS_MACOSX) | 411 #if defined(OS_MACOSX) |
| 413 extern const char kDisableSystemFullscreenForTesting[]; | 412 extern const char kDisableSystemFullscreenForTesting[]; |
| 414 extern const char kEnableAppListShim[]; | 413 extern const char kEnableAppListShim[]; |
| 415 extern const char kEnableAppShims[]; | 414 extern const char kEnableAppShims[]; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 #else | 446 #else |
| 448 extern const char kEnablePrintPreview[]; | 447 extern const char kEnablePrintPreview[]; |
| 449 #endif | 448 #endif |
| 450 | 449 |
| 451 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 450 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 452 // alphabetical order, or in one of the ifdefs (also in order in each section). | 451 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 453 | 452 |
| 454 } // namespace switches | 453 } // namespace switches |
| 455 | 454 |
| 456 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 455 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |