| 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 2532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2543 const char kEnableVrShellName[] = "Enable Chrome VR."; | 2543 const char kEnableVrShellName[] = "Enable Chrome VR."; |
| 2544 | 2544 |
| 2545 const char kEnableVrShellDescription[] = | 2545 const char kEnableVrShellDescription[] = |
| 2546 "Allow browsing with a VR headset if available for this device."; | 2546 "Allow browsing with a VR headset if available for this device."; |
| 2547 | 2547 |
| 2548 const char kVrCustomTabBrowsingName[] = "Enable Custom Tab browsing in VR."; | 2548 const char kVrCustomTabBrowsingName[] = "Enable Custom Tab browsing in VR."; |
| 2549 | 2549 |
| 2550 const char kVrCustomTabBrowsingDescription[] = | 2550 const char kVrCustomTabBrowsingDescription[] = |
| 2551 "Allow browsing with a VR headset in a Custom Tab if available for this " | 2551 "Allow browsing with a VR headset in a Custom Tab if available for this " |
| 2552 "device."; | 2552 "device."; |
| 2553 |
| 2554 const char kWebVrAutopresentName[] = "Enable WebVr auto presentation"; |
| 2555 |
| 2556 const char kWebVrAutopresentDescription[] = |
| 2557 "Allows auto presentation of WebVr content from trusted first-party apps"; |
| 2553 #endif // BUILDFLAG(ENABLE_VR) | 2558 #endif // BUILDFLAG(ENABLE_VR) |
| 2554 #endif // defined(OS_ANDROID) | 2559 #endif // defined(OS_ANDROID) |
| 2555 | 2560 |
| 2556 // Web payments | 2561 // Web payments |
| 2557 | 2562 |
| 2558 const char kWebPaymentsName[] = "Web Payments"; | 2563 const char kWebPaymentsName[] = "Web Payments"; |
| 2559 | 2564 |
| 2560 const char kWebPaymentsDescription[] = | 2565 const char kWebPaymentsDescription[] = |
| 2561 "Enable Web Payments API integration, a JavaScript API for merchants."; | 2566 "Enable Web Payments API integration, a JavaScript API for merchants."; |
| 2562 | 2567 |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3173 | 3178 |
| 3174 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3179 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3175 "New window behavior for the accessibility keyboard"; | 3180 "New window behavior for the accessibility keyboard"; |
| 3176 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3181 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3177 "Disable new window behavior for the accessibility keyboard " | 3182 "Disable new window behavior for the accessibility keyboard " |
| 3178 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3183 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3179 | 3184 |
| 3180 #endif // defined(OS_CHROMEOS) | 3185 #endif // defined(OS_CHROMEOS) |
| 3181 | 3186 |
| 3182 } // namespace flag_descriptions | 3187 } // namespace flag_descriptions |
| OLD | NEW |