| 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 3308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3319 // Description of the autoplay policy that requires a user gesture on cross | 3319 // Description of the autoplay policy that requires a user gesture on cross |
| 3320 // origin iframes. | 3320 // origin iframes. |
| 3321 extern const char kAutoplayPolicyCrossOriginUserGestureRequired[]; | 3321 extern const char kAutoplayPolicyCrossOriginUserGestureRequired[]; |
| 3322 | 3322 |
| 3323 // Description of the autoplay policy that has no user gesture requirements. | 3323 // Description of the autoplay policy that has no user gesture requirements. |
| 3324 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3324 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3325 | 3325 |
| 3326 // Description of the autoplay policy that requires a user gesture. | 3326 // Description of the autoplay policy that requires a user gesture. |
| 3327 extern const char kAutoplayPolicyUserGestureRequired[]; | 3327 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3328 | 3328 |
| 3329 // Name for the about: flag for including the title to auto complete match for |
| 3330 // current URL. |
| 3331 extern const char kIncludeTitleToACMatchForCurrentUrlName[]; |
| 3332 |
| 3333 // Name of the about: flag for displaying the title of the omnibox match for |
| 3334 // current URL. |
| 3335 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3336 |
| 3337 // Description of the about: flag for displaying the title of the omnibox match |
| 3338 // for current URL. |
| 3339 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3340 |
| 3329 } // namespace flag_descriptions | 3341 } // namespace flag_descriptions |
| 3330 | 3342 |
| 3331 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3343 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |