| 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 2490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2501 "for faster layout."; | 2501 "for faster layout."; |
| 2502 | 2502 |
| 2503 const char kFramebustingName[] = | 2503 const char kFramebustingName[] = |
| 2504 "Framebusting requires same-origin or a user gesture"; | 2504 "Framebusting requires same-origin or a user gesture"; |
| 2505 | 2505 |
| 2506 const char kFramebustingDescription[] = | 2506 const char kFramebustingDescription[] = |
| 2507 "Don't permit an iframe to navigate the top level browsing context " | 2507 "Don't permit an iframe to navigate the top level browsing context " |
| 2508 "unless they are same-origin or the iframe is processing a user " | 2508 "unless they are same-origin or the iframe is processing a user " |
| 2509 "gesture."; | 2509 "gesture."; |
| 2510 | 2510 |
| 2511 const char kVibrateRequiresUserGestureName[] = |
| 2512 "Requiring user gesture for the Vibration API"; |
| 2513 |
| 2514 const char kVibrateRequiresUserGestureDescription[] = |
| 2515 "Block the Vibration API if no user gesture has been received on " |
| 2516 "the frame or any embedded frame."; |
| 2517 |
| 2511 #if defined(OS_ANDROID) | 2518 #if defined(OS_ANDROID) |
| 2512 | 2519 |
| 2513 const char kEnableVrShellName[] = "Enable Chrome VR."; | 2520 const char kEnableVrShellName[] = "Enable Chrome VR."; |
| 2514 | 2521 |
| 2515 const char kEnableVrShellDescription[] = | 2522 const char kEnableVrShellDescription[] = |
| 2516 "Allow browsing with a VR headset if available for this device."; | 2523 "Allow browsing with a VR headset if available for this device."; |
| 2517 | 2524 |
| 2518 #endif // defined(OS_ANDROID) | 2525 #endif // defined(OS_ANDROID) |
| 2519 | 2526 |
| 2520 // Web payments | 2527 // Web payments |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3002 const char kEnableCopylessPasteDescription[] = | 3009 const char kEnableCopylessPasteDescription[] = |
| 3003 "Provide suggestions for text input, based on your recent context. For " | 3010 "Provide suggestions for text input, based on your recent context. For " |
| 3004 "example, if you looked at a restaurant website and switched to the Maps " | 3011 "example, if you looked at a restaurant website and switched to the Maps " |
| 3005 "app, the keyboard would offer the name of that restaurant as a suggestion " | 3012 "app, the keyboard would offer the name of that restaurant as a suggestion " |
| 3006 "to enter into the search bar. The data is indexed locally, and never sent " | 3013 "to enter into the search bar. The data is indexed locally, and never sent " |
| 3007 "to the server. It's disabled in incognito mode."; | 3014 "to the server. It's disabled in incognito mode."; |
| 3008 | 3015 |
| 3009 #endif // defined(OS_ANDROID) | 3016 #endif // defined(OS_ANDROID) |
| 3010 | 3017 |
| 3011 } // namespace flag_descriptions | 3018 } // namespace flag_descriptions |
| OLD | NEW |