| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 extern const char kSslVersionMaxTls13[]; | 708 extern const char kSslVersionMaxTls13[]; |
| 709 | 709 |
| 710 // Title for the flag to enable Token Binding. Please do not translate 'Token | 710 // Title for the flag to enable Token Binding. Please do not translate 'Token |
| 711 // Binding'. | 711 // Binding'. |
| 712 extern const char kEnableTokenBindingName[]; | 712 extern const char kEnableTokenBindingName[]; |
| 713 | 713 |
| 714 // Description for the flag to enable Token Binding. Please do not translate | 714 // Description for the flag to enable Token Binding. Please do not translate |
| 715 // 'Token Binding'. | 715 // 'Token Binding'. |
| 716 extern const char kEnableTokenBindingDescription[]; | 716 extern const char kEnableTokenBindingDescription[]; |
| 717 | 717 |
| 718 // Title for the flag for gesture requiment for media playback | |
| 719 extern const char kGestureRequirementForMediaPlaybackName[]; | |
| 720 | |
| 721 // Description for the flag for gesture requiment for media playback | |
| 722 extern const char kGestureRequirementForMediaPlaybackDescription[]; | |
| 723 | |
| 724 // Description for the flag to adjust the default behaviour for document level | 718 // Description for the flag to adjust the default behaviour for document level |
| 725 // passive touch listeners. | 719 // passive touch listeners. |
| 726 extern const char kPassiveDocumentEventListenersDescription[]; | 720 extern const char kPassiveDocumentEventListenersDescription[]; |
| 727 | 721 |
| 728 // Name for the flag to adjust the default behaviour for document level passive | 722 // Name for the flag to adjust the default behaviour for document level passive |
| 729 // listeners. | 723 // listeners. |
| 730 extern const char kPassiveDocumentEventListenersName[]; | 724 extern const char kPassiveDocumentEventListenersName[]; |
| 731 | 725 |
| 732 // Description for the flag to adjust the default behaviour for passive touch | 726 // Description for the flag to adjust the default behaviour for passive touch |
| 733 // listeners during fling. | 727 // listeners during fling. |
| (...skipping 2588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3322 | 3316 |
| 3323 // Description of the autoplay policy that has no user gesture requirements. | 3317 // Description of the autoplay policy that has no user gesture requirements. |
| 3324 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3325 | 3319 |
| 3326 // Description of the autoplay policy that requires a user gesture. | 3320 // Description of the autoplay policy that requires a user gesture. |
| 3327 extern const char kAutoplayPolicyUserGestureRequired[]; | 3321 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3328 | 3322 |
| 3329 } // namespace flag_descriptions | 3323 } // namespace flag_descriptions |
| 3330 | 3324 |
| 3331 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |