| 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 3298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3309 extern const char kAutoplayPolicyUserGestureRequired[]; | 3309 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3310 | 3310 |
| 3311 // Name of the about: flag for displaying the title of the omnibox match for | 3311 // Name of the about: flag for displaying the title of the omnibox match for |
| 3312 // current URL. | 3312 // current URL. |
| 3313 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3313 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3314 | 3314 |
| 3315 // Description of the about: flag for displaying the title of the omnibox match | 3315 // Description of the about: flag for displaying the title of the omnibox match |
| 3316 // for current URL. | 3316 // for current URL. |
| 3317 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3317 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3318 | 3318 |
| 3319 // Name of the flag that forces Network Quality Estimator (NQE) to always |
| 3320 // return the specified effective connection type. |
| 3321 extern const char kForceEffectiveConnectionTypeName[]; |
| 3322 |
| 3323 // Description of the flag that forces Network Quality Estimator (NQE) to always |
| 3324 // return the specified effective connection type. |
| 3325 extern const char kForceEffectiveConnectionTypeDescription[]; |
| 3326 |
| 3327 // Description of the various effective connection type choices that can be |
| 3328 // set using kForceEffectiveConnectionTypeName flag. |
| 3329 extern const char kEffectiveConnectionTypeUnknownDescription[]; |
| 3330 extern const char kEffectiveConnectionTypeOfflineDescription[]; |
| 3331 extern const char kEffectiveConnectionTypeSlow2GDescription[]; |
| 3332 extern const char kEffectiveConnectionType2GDescription[]; |
| 3333 extern const char kEffectiveConnectionType3GDescription[]; |
| 3334 extern const char kEffectiveConnectionType4GDescription[]; |
| 3335 |
| 3319 } // namespace flag_descriptions | 3336 } // namespace flag_descriptions |
| 3320 | 3337 |
| 3321 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3338 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |