| 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 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 extern const char kBootAnimationDescription[]; | 1015 extern const char kBootAnimationDescription[]; |
| 1016 | 1016 |
| 1017 #endif // defined(OS_CHROMEOS) | 1017 #endif // defined(OS_CHROMEOS) |
| 1018 | 1018 |
| 1019 // Name of the flag for accelerated video decode where available. | 1019 // Name of the flag for accelerated video decode where available. |
| 1020 extern const char kAcceleratedVideoDecodeName[]; | 1020 extern const char kAcceleratedVideoDecodeName[]; |
| 1021 | 1021 |
| 1022 // Description for the flag for accelerated video decode where available. | 1022 // Description for the flag for accelerated video decode where available. |
| 1023 extern const char kAcceleratedVideoDecodeDescription[]; | 1023 extern const char kAcceleratedVideoDecodeDescription[]; |
| 1024 | 1024 |
| 1025 // Name/Description for the "enable-hdr" flag. |
| 1026 extern const char kEnableHDRName[]; |
| 1027 extern const char kEnableHDRDescription[]; |
| 1028 |
| 1025 // Name for the flag for cloud import feature. | 1029 // Name for the flag for cloud import feature. |
| 1026 extern const char kCloudImport[]; | 1030 extern const char kCloudImport[]; |
| 1027 | 1031 |
| 1028 // Description for the flag for cloud import. | 1032 // Description for the flag for cloud import. |
| 1029 extern const char kCloudImportDescription[]; | 1033 extern const char kCloudImportDescription[]; |
| 1030 | 1034 |
| 1031 // Name for the flag to set to enable Request Tablet Site in the wrench menu. | 1035 // Name for the flag to set to enable Request Tablet Site in the wrench menu. |
| 1032 extern const char kRequestTabletSiteName[]; | 1036 extern const char kRequestTabletSiteName[]; |
| 1033 | 1037 |
| 1034 // Description for the flag to set to enable Request Tablet Site in the wrench | 1038 // Description for the flag to set to enable Request Tablet Site in the wrench |
| (...skipping 2093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3128 | 3132 |
| 3129 // Description of the about: flag enabling emoji, handwriting and voice input on | 3133 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3130 // opt-in IME menu. | 3134 // opt-in IME menu. |
| 3131 extern const char kEnableEhvInputDescription[]; | 3135 extern const char kEnableEhvInputDescription[]; |
| 3132 | 3136 |
| 3133 #endif // #if defined(OS_CHROMEOS) | 3137 #endif // #if defined(OS_CHROMEOS) |
| 3134 | 3138 |
| 3135 } // namespace flag_descriptions | 3139 } // namespace flag_descriptions |
| 3136 | 3140 |
| 3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3141 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |