Chromium Code Reviews| 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 3302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3313 // Description of the autoplay policy that requires a user gesture on cross | 3313 // Description of the autoplay policy that requires a user gesture on cross |
| 3314 // origin iframes. | 3314 // origin iframes. |
| 3315 extern const char kAutoplayPolicyCrossOriginUserGestureRequired[]; | 3315 extern const char kAutoplayPolicyCrossOriginUserGestureRequired[]; |
| 3316 | 3316 |
| 3317 // Description of the autoplay policy that has no user gesture requirements. | 3317 // Description of the autoplay policy that has no user gesture requirements. |
| 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3319 | 3319 |
| 3320 // Description of the autoplay policy that requires a user gesture. | 3320 // Description of the autoplay policy that requires a user gesture. |
| 3321 extern const char kAutoplayPolicyUserGestureRequired[]; | 3321 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3322 | 3322 |
| 3323 // Name for the about: flag for including the title to auto complete match for | |
| 3324 // current URL. | |
| 3325 extern const char kIncludeTitleToACMatchForCurrentUrlName[]; | |
|
Mark P
2017/04/27 05:44:08
Is this a rebase error? Should this block be remo
gcomanici
2017/04/27 17:29:30
Removed.
| |
| 3326 | |
| 3327 // Name of the about: flag for displaying the title of the omnibox match for | |
| 3328 // current URL. | |
| 3329 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | |
| 3330 | |
| 3331 // Description of the about: flag for displaying the title of the omnibox match | |
| 3332 // for current URL. | |
| 3333 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | |
| 3334 | |
| 3323 } // namespace flag_descriptions | 3335 } // namespace flag_descriptions |
| 3324 | 3336 |
| 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3337 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |