| 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 3305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3316 extern const char kAutoplayPolicyUserGestureRequired[]; | 3316 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3317 | 3317 |
| 3318 // Name of the about: flag for displaying the title of the omnibox match for | 3318 // Name of the about: flag for displaying the title of the omnibox match for |
| 3319 // current URL. | 3319 // current URL. |
| 3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3321 | 3321 |
| 3322 // Description of the about: flag for displaying the title of the omnibox match | 3322 // Description of the about: flag for displaying the title of the omnibox match |
| 3323 // for current URL. | 3323 // for current URL. |
| 3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3325 | 3325 |
| 3326 // Name of the flag that forces Network Quality Estimator (NQE) to always |
| 3327 // return the specified effective connection type. |
| 3328 extern const char kForceEffectiveConnectionTypeName[]; |
| 3329 |
| 3330 // Description of the flag that forces Network Quality Estimator (NQE) to always |
| 3331 // return the specified effective connection type. |
| 3332 extern const char kForceEffectiveConnectionTypeDescription[]; |
| 3333 |
| 3334 // Description of the various effective connection type choices that can be |
| 3335 // set using kForceEffectiveConnectionTypeName flag. |
| 3336 extern const char kEffectiveConnectionTypeUnknownDescription[]; |
| 3337 extern const char kEffectiveConnectionTypeOfflineDescription[]; |
| 3338 extern const char kEffectiveConnectionTypeSlow2GDescription[]; |
| 3339 extern const char kEffectiveConnectionType2GDescription[]; |
| 3340 extern const char kEffectiveConnectionType3GDescription[]; |
| 3341 extern const char kEffectiveConnectionType4GDescription[]; |
| 3342 |
| 3326 // Name & description for the heap profiling flag. | 3343 // Name & description for the heap profiling flag. |
| 3327 extern const char kEnableHeapProfilingName[]; | 3344 extern const char kEnableHeapProfilingName[]; |
| 3328 extern const char kEnableHeapProfilingDescription[]; | 3345 extern const char kEnableHeapProfilingDescription[]; |
| 3329 | 3346 |
| 3330 // Descriptions of the different heap profiling modes. | 3347 // Descriptions of the different heap profiling modes. |
| 3331 extern const char kEnableHeapProfilingModePseudo[]; | 3348 extern const char kEnableHeapProfilingModePseudo[]; |
| 3332 extern const char kEnableHeapProfilingModeNative[]; | 3349 extern const char kEnableHeapProfilingModeNative[]; |
| 3333 extern const char kEnableHeapProfilingTaskProfiler[]; | 3350 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3334 | 3351 |
| 3335 } // namespace flag_descriptions | 3352 } // namespace flag_descriptions |
| 3336 | 3353 |
| 3337 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3354 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |