| 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 // Description for the flag which can be used for support for javascript locking | 822 // Description for the flag which can be used for support for javascript locking |
| 823 // rotation | 823 // rotation |
| 824 extern const char kAshScreenOrientationLockDescription[]; | 824 extern const char kAshScreenOrientationLockDescription[]; |
| 825 | 825 |
| 826 // Title for the flag to enable the mirrored screen mode. | 826 // Title for the flag to enable the mirrored screen mode. |
| 827 extern const char kAshEnableMirroredScreenName[]; | 827 extern const char kAshEnableMirroredScreenName[]; |
| 828 | 828 |
| 829 // Description for the flag to enable the mirrored screen mode. | 829 // Description for the flag to enable the mirrored screen mode. |
| 830 extern const char kAshEnableMirroredScreenDescription[]; | 830 extern const char kAshEnableMirroredScreenDescription[]; |
| 831 | 831 |
| 832 // Title for the flag to enable smooth rotation animations. | 832 // Title for the flag to disable smooth rotation animations. |
| 833 extern const char kAshEnableSmoothScreenRotationName[]; | 833 extern const char kAshDisableSmoothScreenRotationName[]; |
| 834 | 834 |
| 835 // Description for the flag to enable smooth rotation animations. | 835 // Description for the flag to disable smooth rotation animations. |
| 836 extern const char kAshEnableSmoothScreenRotationDescription[]; | 836 extern const char kAshDisableSmoothScreenRotationDescription[]; |
| 837 | 837 |
| 838 // Description for the flag that sets material design ink drop animation speed | 838 // Description for the flag that sets material design ink drop animation speed |
| 839 // of fast. | 839 // of fast. |
| 840 extern const char kMaterialDesignInkDropAnimationFast[]; | 840 extern const char kMaterialDesignInkDropAnimationFast[]; |
| 841 | 841 |
| 842 // Description for the flag that sets material design ink drop anation speeds of | 842 // Description for the flag that sets material design ink drop anation speeds of |
| 843 // slow. | 843 // slow. |
| 844 extern const char kMaterialDesignInkDropAnimationSlow[]; | 844 extern const char kMaterialDesignInkDropAnimationSlow[]; |
| 845 | 845 |
| 846 // Name for the flag that sets the material design ink drop animation speed. | 846 // Name for the flag that sets the material design ink drop animation speed. |
| (...skipping 2469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3316 extern const char kEnableOmniboxClipboardProviderName[]; | 3316 extern const char kEnableOmniboxClipboardProviderName[]; |
| 3317 | 3317 |
| 3318 // Description of the flag that enables the omnibox's clipboard URL provider. | 3318 // Description of the flag that enables the omnibox's clipboard URL provider. |
| 3319 extern const char kEnableOmniboxClipboardProviderDescription[]; | 3319 extern const char kEnableOmniboxClipboardProviderDescription[]; |
| 3320 | 3320 |
| 3321 #endif // defined(OS_ANDROID) | 3321 #endif // defined(OS_ANDROID) |
| 3322 | 3322 |
| 3323 } // namespace flag_descriptions | 3323 } // namespace flag_descriptions |
| 3324 | 3324 |
| 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |