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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 extern const char kEnableSpdyProxyAuth[]; | 417 extern const char kEnableSpdyProxyAuth[]; |
418 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 418 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
419 | 419 |
420 #if defined(OS_ANDROID) | 420 #if defined(OS_ANDROID) |
421 extern const char kDisableAddToHomescreen[]; | 421 extern const char kDisableAddToHomescreen[]; |
422 extern const char kDisableNewNTP[]; | 422 extern const char kDisableNewNTP[]; |
423 extern const char kEnableAccessibilityTabSwitcher[]; | 423 extern const char kEnableAccessibilityTabSwitcher[]; |
424 extern const char kEnableAddToHomescreen[]; | 424 extern const char kEnableAddToHomescreen[]; |
425 extern const char kEnableNewNTP[]; | 425 extern const char kEnableNewNTP[]; |
426 extern const char kEnableTranslate[]; | 426 extern const char kEnableTranslate[]; |
427 extern const char kTabletUI[]; | |
428 extern const char kEnableCast[]; | 427 extern const char kEnableCast[]; |
429 #endif | 428 #endif |
430 | 429 |
431 #if defined(USE_ASH) | 430 #if defined(USE_ASH) |
432 extern const char kOpenAsh[]; | 431 extern const char kOpenAsh[]; |
433 #endif | 432 #endif |
434 | 433 |
435 #if defined(OS_POSIX) | 434 #if defined(OS_POSIX) |
436 extern const char kEnableCrashReporterForTesting[]; | 435 extern const char kEnableCrashReporterForTesting[]; |
437 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 436 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 #else | 476 #else |
478 extern const char kEnablePrintPreview[]; | 477 extern const char kEnablePrintPreview[]; |
479 #endif | 478 #endif |
480 | 479 |
481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
482 // alphabetical order, or in one of the ifdefs (also in order in each section). | 481 // alphabetical order, or in one of the ifdefs (also in order in each section). |
483 | 482 |
484 } // namespace switches | 483 } // namespace switches |
485 | 484 |
486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |