| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 "Some web pages use legacy or non-standard JavaScript extensions that " | 746 "Some web pages use legacy or non-standard JavaScript extensions that " |
| 747 "may conflict with the latest JavaScript features. This flag allows " | 747 "may conflict with the latest JavaScript features. This flag allows " |
| 748 "disabling support of those features for compatibility with such " | 748 "disabling support of those features for compatibility with such " |
| 749 "pages."; | 749 "pages."; |
| 750 | 750 |
| 751 const char kJavascriptHarmonyName[] = "Experimental JavaScript"; | 751 const char kJavascriptHarmonyName[] = "Experimental JavaScript"; |
| 752 | 752 |
| 753 const char kJavascriptHarmonyDescription[] = | 753 const char kJavascriptHarmonyDescription[] = |
| 754 "Enable web pages to use experimental JavaScript features."; | 754 "Enable web pages to use experimental JavaScript features."; |
| 755 | 755 |
| 756 const char kV8FutureName[] = "Experimental Features in V8 JavaScript execution"; | |
| 757 | |
| 758 const char kV8FutureDescription[] = | |
| 759 "Enable experimental features in V8 for JavaScript execution."; | |
| 760 | |
| 761 const char kV8DisableIgnitionTurboName[] = | 756 const char kV8DisableIgnitionTurboName[] = |
| 762 "Disable the new JavaScript Compilation Pipeline"; | 757 "Classic JavaScript Compilation Pipeline"; |
| 763 | 758 |
| 764 const char kV8DisableIgnitionTurboDescription[] = | 759 const char kV8DisableIgnitionTurboDescription[] = |
| 765 "Disable V8's new Ignition interpreter and TurboFan compiler for " | 760 "Enables V8's classic compilation pipeline for JavaScript execution " |
| 766 "JavaScript execution."; | 761 "(disabling V8's new Ignition interpreter and TurboFan compiler)"; |
| 767 | 762 |
| 768 const char kEnableAsmWasmName[] = | 763 const char kEnableAsmWasmName[] = |
| 769 "Experimental Validate Asm.js and convert to WebAssembly when valid."; | 764 "Experimental Validate Asm.js and convert to WebAssembly when valid."; |
| 770 | 765 |
| 771 const char kEnableAsmWasmDescription[] = | 766 const char kEnableAsmWasmDescription[] = |
| 772 R"*(Validate Asm.js when "use asm" is present and then convert to )*" | 767 R"*(Validate Asm.js when "use asm" is present and then convert to )*" |
| 773 R"*(WebAssembly.)*"; | 768 R"*(WebAssembly.)*"; |
| 774 | 769 |
| 775 const char kEnableSharedArrayBufferName[] = | 770 const char kEnableSharedArrayBufferName[] = |
| 776 "Experimental enabled SharedArrayBuffer support in JavaScript."; | 771 "Experimental enabled SharedArrayBuffer support in JavaScript."; |
| (...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2888 const char kEnableEhvInputName[] = | 2883 const char kEnableEhvInputName[] = |
| 2889 "Emoji, handwriting and voice input on opt-in IME menu"; | 2884 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2890 | 2885 |
| 2891 const char kEnableEhvInputDescription[] = | 2886 const char kEnableEhvInputDescription[] = |
| 2892 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2887 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2893 "menu."; | 2888 "menu."; |
| 2894 | 2889 |
| 2895 #endif // #if defined(OS_CHROMEOS) | 2890 #endif // #if defined(OS_CHROMEOS) |
| 2896 | 2891 |
| 2897 } // namespace flag_descriptions | 2892 } // namespace flag_descriptions |
| OLD | NEW |