| 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 3341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3352 extern const char kAutoplayPolicyUserGestureRequired[]; | 3352 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3353 | 3353 |
| 3354 // Name of the about: flag for displaying the title of the omnibox match for | 3354 // Name of the about: flag for displaying the title of the omnibox match for |
| 3355 // current URL. | 3355 // current URL. |
| 3356 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3356 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3357 | 3357 |
| 3358 // Description of the about: flag for displaying the title of the omnibox match | 3358 // Description of the about: flag for displaying the title of the omnibox match |
| 3359 // for current URL. | 3359 // for current URL. |
| 3360 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3360 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3361 | 3361 |
| 3362 // Name of the Omnibox UI vertical margin flag. |
| 3363 extern const char kOmniboxUIVerticalMarginName[]; |
| 3364 |
| 3365 // Description of the Omnibox UI vertical margin flag. |
| 3366 extern const char kOmniboxUIVerticalMarginDescription[]; |
| 3367 |
| 3362 // Name of the flag that forces Network Quality Estimator (NQE) to always | 3368 // Name of the flag that forces Network Quality Estimator (NQE) to always |
| 3363 // return the specified effective connection type. | 3369 // return the specified effective connection type. |
| 3364 extern const char kForceEffectiveConnectionTypeName[]; | 3370 extern const char kForceEffectiveConnectionTypeName[]; |
| 3365 | 3371 |
| 3366 // Description of the flag that forces Network Quality Estimator (NQE) to always | 3372 // Description of the flag that forces Network Quality Estimator (NQE) to always |
| 3367 // return the specified effective connection type. | 3373 // return the specified effective connection type. |
| 3368 extern const char kForceEffectiveConnectionTypeDescription[]; | 3374 extern const char kForceEffectiveConnectionTypeDescription[]; |
| 3369 | 3375 |
| 3370 // Description of the various effective connection type choices that can be | 3376 // Description of the various effective connection type choices that can be |
| 3371 // set using kForceEffectiveConnectionTypeName flag. | 3377 // set using kForceEffectiveConnectionTypeName flag. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 3398 // a hard-reload. | 3404 // a hard-reload. |
| 3399 extern const char kLocationHardReloadDescription[]; | 3405 extern const char kLocationHardReloadDescription[]; |
| 3400 | 3406 |
| 3401 // Name and description for the capture-thumbnail-on-load-finished flag. | 3407 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3402 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3403 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3404 | 3410 |
| 3405 } // namespace flag_descriptions | 3411 } // namespace flag_descriptions |
| 3406 | 3412 |
| 3407 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |