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 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1059 | 1059 |
1060 // Description for the flag for wallpaper boot animation (except for OOBE). | 1060 // Description for the flag for wallpaper boot animation (except for OOBE). |
1061 extern const char kBootAnimationDescription[]; | 1061 extern const char kBootAnimationDescription[]; |
1062 | 1062 |
1063 // Name for the flag for enabling Instant Tethering. | 1063 // Name for the flag for enabling Instant Tethering. |
1064 extern const char kTetherName[]; | 1064 extern const char kTetherName[]; |
1065 | 1065 |
1066 // Description for the flag for enabling Instant Tethering. | 1066 // Description for the flag for enabling Instant Tethering. |
1067 extern const char kTetherDescription[]; | 1067 extern const char kTetherDescription[]; |
1068 | 1068 |
| 1069 // Name for the flag for CrOS Component. |
| 1070 extern const char kCrOSComponentName[]; |
| 1071 |
| 1072 // Description for the flag for CrOS Component. |
| 1073 extern const char kCrOSComponentDescription[]; |
| 1074 |
1069 #endif // defined(OS_CHROMEOS) | 1075 #endif // defined(OS_CHROMEOS) |
1070 | 1076 |
1071 // Name of the flag for accelerated video decode where available. | 1077 // Name of the flag for accelerated video decode where available. |
1072 extern const char kAcceleratedVideoDecodeName[]; | 1078 extern const char kAcceleratedVideoDecodeName[]; |
1073 | 1079 |
1074 // Description for the flag for accelerated video decode where available. | 1080 // Description for the flag for accelerated video decode where available. |
1075 extern const char kAcceleratedVideoDecodeDescription[]; | 1081 extern const char kAcceleratedVideoDecodeDescription[]; |
1076 | 1082 |
1077 // Name/Description for the "enable-hdr" flag. | 1083 // Name/Description for the "enable-hdr" flag. |
1078 extern const char kEnableHDRName[]; | 1084 extern const char kEnableHDRName[]; |
(...skipping 2272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3351 extern const char kEnableHeapProfilingDescription[]; | 3357 extern const char kEnableHeapProfilingDescription[]; |
3352 | 3358 |
3353 // Descriptions of the different heap profiling modes. | 3359 // Descriptions of the different heap profiling modes. |
3354 extern const char kEnableHeapProfilingModePseudo[]; | 3360 extern const char kEnableHeapProfilingModePseudo[]; |
3355 extern const char kEnableHeapProfilingModeNative[]; | 3361 extern const char kEnableHeapProfilingModeNative[]; |
3356 extern const char kEnableHeapProfilingTaskProfiler[]; | 3362 extern const char kEnableHeapProfilingTaskProfiler[]; |
3357 | 3363 |
3358 } // namespace flag_descriptions | 3364 } // namespace flag_descriptions |
3359 | 3365 |
3360 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3366 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |