| 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 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 const char kSslVersionMaxDescription[] = "Set maximum enabled TLS version."; | 646 const char kSslVersionMaxDescription[] = "Set maximum enabled TLS version."; |
| 647 | 647 |
| 648 const char kSslVersionMaxTls12[] = "TLS 1.2"; | 648 const char kSslVersionMaxTls12[] = "TLS 1.2"; |
| 649 | 649 |
| 650 const char kSslVersionMaxTls13[] = "TLS 1.3"; | 650 const char kSslVersionMaxTls13[] = "TLS 1.3"; |
| 651 | 651 |
| 652 const char kEnableTokenBindingName[] = "Token Binding."; | 652 const char kEnableTokenBindingName[] = "Token Binding."; |
| 653 | 653 |
| 654 const char kEnableTokenBindingDescription[] = "Enable Token Binding support."; | 654 const char kEnableTokenBindingDescription[] = "Enable Token Binding support."; |
| 655 | 655 |
| 656 const char kGestureRequirementForMediaPlaybackName[] = |
| 657 "Gesture requirement for media playback"; |
| 658 |
| 659 const char kGestureRequirementForMediaPlaybackDescription[] = |
| 660 "User gesture requirement for playing media elements. Disabling this " |
| 661 "will allow autoplay to work."; |
| 662 |
| 656 const char kPassiveDocumentEventListenersDescription[] = | 663 const char kPassiveDocumentEventListenersDescription[] = |
| 657 "Forces touchstart, and touchmove event listeners on document level " | 664 "Forces touchstart, and touchmove event listeners on document level " |
| 658 "targets (which haven't requested otherwise) to be treated as passive."; | 665 "targets (which haven't requested otherwise) to be treated as passive."; |
| 659 | 666 |
| 660 const char kPassiveDocumentEventListenersName[] = | 667 const char kPassiveDocumentEventListenersName[] = |
| 661 "Document Level Event Listeners Passive Default"; | 668 "Document Level Event Listeners Passive Default"; |
| 662 | 669 |
| 663 const char kPassiveEventListenersDueToFlingDescription[] = | 670 const char kPassiveEventListenersDueToFlingDescription[] = |
| 664 "Forces touchstart, and first touchmove per scroll event listeners " | 671 "Forces touchstart, and first touchmove per scroll event listeners " |
| 665 "during fling to be treated as passive."; | 672 "during fling to be treated as passive."; |
| (...skipping 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3042 | 3049 |
| 3043 const char kAutoplayPolicyNoUserGestureRequired[] = | 3050 const char kAutoplayPolicyNoUserGestureRequired[] = |
| 3044 "No user gesture is required."; | 3051 "No user gesture is required."; |
| 3045 | 3052 |
| 3046 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; | 3053 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
| 3047 | 3054 |
| 3048 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = | 3055 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = |
| 3049 "User gesture is required for cross-origin iframes."; | 3056 "User gesture is required for cross-origin iframes."; |
| 3050 | 3057 |
| 3051 } // namespace flag_descriptions | 3058 } // namespace flag_descriptions |
| OLD | NEW |