| 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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 "pages that you visit on a daily basis. Strict mixed content checking, " | 829 "pages that you visit on a daily basis. Strict mixed content checking, " |
| 830 "for example. And locking powerful features to secure contexts. This " | 830 "for example. And locking powerful features to secure contexts. This " |
| 831 "flag will probably annoy you."; | 831 "flag will probably annoy you."; |
| 832 | 832 |
| 833 const char kExperimentalWebPlatformFeaturesName[] = | 833 const char kExperimentalWebPlatformFeaturesName[] = |
| 834 "Experimental Web Platform features"; | 834 "Experimental Web Platform features"; |
| 835 | 835 |
| 836 const char kExperimentalWebPlatformFeaturesDescription[] = | 836 const char kExperimentalWebPlatformFeaturesDescription[] = |
| 837 "Enables experimental Web Platform features that are in development."; | 837 "Enables experimental Web Platform features that are in development."; |
| 838 | 838 |
| 839 const char kExperimentalPointerEventName[] = "Pointer Events"; | |
| 840 | |
| 841 const char kExperimentalPointerEventDescription[] = | |
| 842 "Enables support for the Pointer Events API. This is intended only for " | |
| 843 "testing by web developers."; | |
| 844 | |
| 845 const char kOriginTrialsName[] = "Origin Trials"; | 839 const char kOriginTrialsName[] = "Origin Trials"; |
| 846 | 840 |
| 847 const char kOriginTrialsDescription[] = | 841 const char kOriginTrialsDescription[] = |
| 848 "Enables origin trials for controlling access to feature/API " | 842 "Enables origin trials for controlling access to feature/API " |
| 849 "experiments."; | 843 "experiments."; |
| 850 | 844 |
| 851 const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps"; | 845 const char kBleAdvertisingInExtensionsName[] = "BLE Advertising in Chrome Apps"; |
| 852 | 846 |
| 853 const char kBleAdvertisingInExtensionsDescription[] = | 847 const char kBleAdvertisingInExtensionsDescription[] = |
| 854 "Enables BLE Advertising in Chrome Apps. BLE Advertising might " | 848 "Enables BLE Advertising in Chrome Apps. BLE Advertising might " |
| (...skipping 2350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3205 | 3199 |
| 3206 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3200 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3207 "New window behavior for the accessibility keyboard"; | 3201 "New window behavior for the accessibility keyboard"; |
| 3208 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3202 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3209 "Disable new window behavior for the accessibility keyboard " | 3203 "Disable new window behavior for the accessibility keyboard " |
| 3210 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3204 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3211 | 3205 |
| 3212 #endif // defined(OS_CHROMEOS) | 3206 #endif // defined(OS_CHROMEOS) |
| 3213 | 3207 |
| 3214 } // namespace flag_descriptions | 3208 } // namespace flag_descriptions |
| OLD | NEW |