| 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 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 // Description for the flag which can be used for support for javascript locking | 805 // Description for the flag which can be used for support for javascript locking |
| 806 // rotation | 806 // rotation |
| 807 extern const char kAshScreenOrientationLockDescription[]; | 807 extern const char kAshScreenOrientationLockDescription[]; |
| 808 | 808 |
| 809 // Title for the flag to enable the mirrored screen mode. | 809 // Title for the flag to enable the mirrored screen mode. |
| 810 extern const char kAshEnableMirroredScreenName[]; | 810 extern const char kAshEnableMirroredScreenName[]; |
| 811 | 811 |
| 812 // Description for the flag to enable the mirrored screen mode. | 812 // Description for the flag to enable the mirrored screen mode. |
| 813 extern const char kAshEnableMirroredScreenDescription[]; | 813 extern const char kAshEnableMirroredScreenDescription[]; |
| 814 | 814 |
| 815 // Title for the flag to enable smooth rotation animations. | 815 // Title for the flag to disable smooth rotation animations. |
| 816 extern const char kAshEnableSmoothScreenRotationName[]; | 816 extern const char kAshDisableSmoothScreenRotationName[]; |
| 817 | 817 |
| 818 // Description for the flag to enable smooth rotation animations. | 818 // Description for the flag to disable smooth rotation animations. |
| 819 extern const char kAshEnableSmoothScreenRotationDescription[]; | 819 extern const char kAshDisableSmoothScreenRotationDescription[]; |
| 820 | 820 |
| 821 // Description for the flag that sets material design ink drop animation speed | 821 // Description for the flag that sets material design ink drop animation speed |
| 822 // of fast. | 822 // of fast. |
| 823 extern const char kMaterialDesignInkDropAnimationFast[]; | 823 extern const char kMaterialDesignInkDropAnimationFast[]; |
| 824 | 824 |
| 825 // Description for the flag that sets material design ink drop anation speeds of | 825 // Description for the flag that sets material design ink drop anation speeds of |
| 826 // slow. | 826 // slow. |
| 827 extern const char kMaterialDesignInkDropAnimationSlow[]; | 827 extern const char kMaterialDesignInkDropAnimationSlow[]; |
| 828 | 828 |
| 829 // Name for the flag that sets the material design ink drop animation speed. | 829 // Name for the flag that sets the material design ink drop animation speed. |
| (...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3291 extern const char kEnableWebNfcName[]; | 3291 extern const char kEnableWebNfcName[]; |
| 3292 | 3292 |
| 3293 // Description for the flag to enable WebNFC. | 3293 // Description for the flag to enable WebNFC. |
| 3294 extern const char kEnableWebNfcDescription[]; | 3294 extern const char kEnableWebNfcDescription[]; |
| 3295 | 3295 |
| 3296 #endif // defined(OS_ANDROID) | 3296 #endif // defined(OS_ANDROID) |
| 3297 | 3297 |
| 3298 } // namespace flag_descriptions | 3298 } // namespace flag_descriptions |
| 3299 | 3299 |
| 3300 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3300 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |