| 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 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1053 | 1053 |
| 1054 // Description for the flag to enable unified desktop mode. | 1054 // Description for the flag to enable unified desktop mode. |
| 1055 extern const char kAshEnableUnifiedDesktopDescription[]; | 1055 extern const char kAshEnableUnifiedDesktopDescription[]; |
| 1056 | 1056 |
| 1057 // Name for the flag for wallpaper boot animation (except for OOBE). | 1057 // Name for the flag for wallpaper boot animation (except for OOBE). |
| 1058 extern const char kBootAnimation[]; | 1058 extern const char kBootAnimation[]; |
| 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 CrOS Component. |
| 1064 extern const char kCrOSComponentName[]; |
| 1065 |
| 1066 // Description for the flag for CrOS Component. |
| 1067 extern const char kCrOSComponentDescription[]; |
| 1068 |
| 1063 #endif // defined(OS_CHROMEOS) | 1069 #endif // defined(OS_CHROMEOS) |
| 1064 | 1070 |
| 1065 // Name of the flag for accelerated video decode where available. | 1071 // Name of the flag for accelerated video decode where available. |
| 1066 extern const char kAcceleratedVideoDecodeName[]; | 1072 extern const char kAcceleratedVideoDecodeName[]; |
| 1067 | 1073 |
| 1068 // Description for the flag for accelerated video decode where available. | 1074 // Description for the flag for accelerated video decode where available. |
| 1069 extern const char kAcceleratedVideoDecodeDescription[]; | 1075 extern const char kAcceleratedVideoDecodeDescription[]; |
| 1070 | 1076 |
| 1071 // Name/Description for the "enable-hdr" flag. | 1077 // Name/Description for the "enable-hdr" flag. |
| 1072 extern const char kEnableHDRName[]; | 1078 extern const char kEnableHDRName[]; |
| (...skipping 2266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3339 extern const char kEnableHeapProfilingDescription[]; | 3345 extern const char kEnableHeapProfilingDescription[]; |
| 3340 | 3346 |
| 3341 // Descriptions of the different heap profiling modes. | 3347 // Descriptions of the different heap profiling modes. |
| 3342 extern const char kEnableHeapProfilingModePseudo[]; | 3348 extern const char kEnableHeapProfilingModePseudo[]; |
| 3343 extern const char kEnableHeapProfilingModeNative[]; | 3349 extern const char kEnableHeapProfilingModeNative[]; |
| 3344 extern const char kEnableHeapProfilingTaskProfiler[]; | 3350 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3345 | 3351 |
| 3346 } // namespace flag_descriptions | 3352 } // namespace flag_descriptions |
| 3347 | 3353 |
| 3348 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3354 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |