| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 extern const char kRunAllFlashInAllowModeDescription[]; | 475 extern const char kRunAllFlashInAllowModeDescription[]; |
| 476 | 476 |
| 477 extern const char kPinchScaleName[]; | 477 extern const char kPinchScaleName[]; |
| 478 extern const char kPinchScaleDescription[]; | 478 extern const char kPinchScaleDescription[]; |
| 479 | 479 |
| 480 extern const char kReducedReferrerGranularityName[]; | 480 extern const char kReducedReferrerGranularityName[]; |
| 481 extern const char kReducedReferrerGranularityDescription[]; | 481 extern const char kReducedReferrerGranularityDescription[]; |
| 482 | 482 |
| 483 #if defined(OS_CHROMEOS) | 483 #if defined(OS_CHROMEOS) |
| 484 | 484 |
| 485 extern const char kUseMashName[]; | 485 extern const char kUseMusDescription[]; |
| 486 extern const char kUseMashDescription[]; | 486 extern const char kUseMusName[]; |
| 487 extern const char kEnableMashDescription[]; |
| 488 extern const char kEnableMusDescription[]; |
| 487 | 489 |
| 488 extern const char kAllowTouchpadThreeFingerClickName[]; | 490 extern const char kAllowTouchpadThreeFingerClickName[]; |
| 489 extern const char kAllowTouchpadThreeFingerClickDescription[]; | 491 extern const char kAllowTouchpadThreeFingerClickDescription[]; |
| 490 | 492 |
| 491 extern const char kAshEnableUnifiedDesktopName[]; | 493 extern const char kAshEnableUnifiedDesktopName[]; |
| 492 extern const char kAshEnableUnifiedDesktopDescription[]; | 494 extern const char kAshEnableUnifiedDesktopDescription[]; |
| 493 | 495 |
| 494 extern const char kBootAnimationName[]; | 496 extern const char kBootAnimationName[]; |
| 495 extern const char kBootAnimationDescription[]; | 497 extern const char kBootAnimationDescription[]; |
| 496 | 498 |
| (...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 #if defined(OS_MACOSX) | 1639 #if defined(OS_MACOSX) |
| 1638 | 1640 |
| 1639 extern const char kMacRTLName[]; | 1641 extern const char kMacRTLName[]; |
| 1640 extern const char kMacRTLDescription[]; | 1642 extern const char kMacRTLDescription[]; |
| 1641 | 1643 |
| 1642 #endif // defined(OS_MACOSX) | 1644 #endif // defined(OS_MACOSX) |
| 1643 | 1645 |
| 1644 } // namespace flag_descriptions | 1646 } // namespace flag_descriptions |
| 1645 | 1647 |
| 1646 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1648 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |