| 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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 | 922 |
| 923 const char kRunAllFlashInAllowModeDescription[] = | 923 const char kRunAllFlashInAllowModeDescription[] = |
| 924 R"*(For sites that have been set to "allow" Flash content, run all )*" | 924 R"*(For sites that have been set to "allow" Flash content, run all )*" |
| 925 R"*(content including any that has been deemed unimportant.)*"; | 925 R"*(content including any that has been deemed unimportant.)*"; |
| 926 | 926 |
| 927 const char kPinchScaleName[] = "Pinch scale"; | 927 const char kPinchScaleName[] = "Pinch scale"; |
| 928 | 928 |
| 929 const char kPinchScaleDescription[] = | 929 const char kPinchScaleDescription[] = |
| 930 "Enables experimental support for scale using pinch."; | 930 "Enables experimental support for scale using pinch."; |
| 931 | 931 |
| 932 const char kCredentialManagerApiName[] = "Experimental Credential Manager API"; | |
| 933 | |
| 934 const char kCredentialManagerApiDescription[] = | |
| 935 "Enables an experimental implementation of the Credential Manager API. " | |
| 936 "Don't enable this unless you know what you're doing."; | |
| 937 | |
| 938 const char kReducedReferrerGranularityName[] = | 932 const char kReducedReferrerGranularityName[] = |
| 939 "Reduce default 'referer' header granularity."; | 933 "Reduce default 'referer' header granularity."; |
| 940 | 934 |
| 941 const char kReducedReferrerGranularityDescription[] = | 935 const char kReducedReferrerGranularityDescription[] = |
| 942 "If a page hasn't set an explicit referrer policy, setting this flag " | 936 "If a page hasn't set an explicit referrer policy, setting this flag " |
| 943 "will reduce the amount of information in the 'referer' header for " | 937 "will reduce the amount of information in the 'referer' header for " |
| 944 "cross-origin requests."; | 938 "cross-origin requests."; |
| 945 | 939 |
| 946 #if defined(OS_CHROMEOS) | 940 #if defined(OS_CHROMEOS) |
| 947 | 941 |
| (...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3028 | 3022 |
| 3029 const char kAutoplayPolicyNoUserGestureRequired[] = | 3023 const char kAutoplayPolicyNoUserGestureRequired[] = |
| 3030 "No user gesture is required."; | 3024 "No user gesture is required."; |
| 3031 | 3025 |
| 3032 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; | 3026 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
| 3033 | 3027 |
| 3034 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = | 3028 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = |
| 3035 "User gesture is required for cross-origin iframes."; | 3029 "User gesture is required for cross-origin iframes."; |
| 3036 | 3030 |
| 3037 } // namespace flag_descriptions | 3031 } // namespace flag_descriptions |
| OLD | NEW |