| 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 3325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3336 #endif // defined(OS_ANDROID) | 3336 #endif // defined(OS_ANDROID) |
| 3337 | 3337 |
| 3338 // Name of the autoplay policy flag. | 3338 // Name of the autoplay policy flag. |
| 3339 extern const char kAutoplayPolicyName[]; | 3339 extern const char kAutoplayPolicyName[]; |
| 3340 | 3340 |
| 3341 // Description of the autoplay policy entry. | 3341 // Description of the autoplay policy entry. |
| 3342 extern const char kAutoplayPolicyDescription[]; | 3342 extern const char kAutoplayPolicyDescription[]; |
| 3343 | 3343 |
| 3344 // Description of the autoplay policy that requires a user gesture on cross | 3344 // Description of the autoplay policy that requires a user gesture on cross |
| 3345 // origin iframes. | 3345 // origin iframes. |
| 3346 extern const char kAutoplayPolicyCrossOriginUserGestureRequired[]; | 3346 extern const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[]; |
| 3347 | 3347 |
| 3348 // Description of the autoplay policy that has no user gesture requirements. | 3348 // Description of the autoplay policy that has no user gesture requirements. |
| 3349 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3349 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3350 | 3350 |
| 3351 // Description of the autoplay policy that requires a user gesture. | 3351 // Description of the autoplay policy that requires a user gesture. |
| 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[]; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3404 // a hard-reload. | 3404 // a hard-reload. |
| 3405 extern const char kLocationHardReloadDescription[]; | 3405 extern const char kLocationHardReloadDescription[]; |
| 3406 | 3406 |
| 3407 // Name and description for the capture-thumbnail-on-load-finished flag. | 3407 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3410 | 3410 |
| 3411 } // namespace flag_descriptions | 3411 } // namespace flag_descriptions |
| 3412 | 3412 |
| 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |