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 3334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3345 extern const char kAutoplayPolicyUserGestureRequired[]; | 3345 extern const char kAutoplayPolicyUserGestureRequired[]; |
3346 | 3346 |
3347 // Name of the about: flag for displaying the title of the omnibox match for | 3347 // Name of the about: flag for displaying the title of the omnibox match for |
3348 // current URL. | 3348 // current URL. |
3349 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3349 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
3350 | 3350 |
3351 // Description of the about: flag for displaying the title of the omnibox match | 3351 // Description of the about: flag for displaying the title of the omnibox match |
3352 // for current URL. | 3352 // for current URL. |
3353 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3353 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
3354 | 3354 |
| 3355 // Name of the flag that forces Network Quality Estimator (NQE) to always |
| 3356 // return the specified effective connection type. |
| 3357 extern const char kForceEffectiveConnectionTypeName[]; |
| 3358 |
| 3359 // Description of the flag that forces Network Quality Estimator (NQE) to always |
| 3360 // return the specified effective connection type. |
| 3361 extern const char kForceEffectiveConnectionTypeDescription[]; |
| 3362 |
| 3363 // Description of the various effective connection type choices that can be |
| 3364 // set using kForceEffectiveConnectionTypeName flag. |
| 3365 extern const char kEffectiveConnectionTypeUnknownDescription[]; |
| 3366 extern const char kEffectiveConnectionTypeOfflineDescription[]; |
| 3367 extern const char kEffectiveConnectionTypeSlow2GDescription[]; |
| 3368 extern const char kEffectiveConnectionType2GDescription[]; |
| 3369 extern const char kEffectiveConnectionType3GDescription[]; |
| 3370 extern const char kEffectiveConnectionType4GDescription[]; |
| 3371 |
3355 // Name & description for the heap profiling flag. | 3372 // Name & description for the heap profiling flag. |
3356 extern const char kEnableHeapProfilingName[]; | 3373 extern const char kEnableHeapProfilingName[]; |
3357 extern const char kEnableHeapProfilingDescription[]; | 3374 extern const char kEnableHeapProfilingDescription[]; |
3358 | 3375 |
3359 // Descriptions of the different heap profiling modes. | 3376 // Descriptions of the different heap profiling modes. |
3360 extern const char kEnableHeapProfilingModePseudo[]; | 3377 extern const char kEnableHeapProfilingModePseudo[]; |
3361 extern const char kEnableHeapProfilingModeNative[]; | 3378 extern const char kEnableHeapProfilingModeNative[]; |
3362 extern const char kEnableHeapProfilingTaskProfiler[]; | 3379 extern const char kEnableHeapProfilingTaskProfiler[]; |
3363 | 3380 |
3364 } // namespace flag_descriptions | 3381 } // namespace flag_descriptions |
3365 | 3382 |
3366 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3383 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |