| 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 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 "V8 caching strategy for CacheStorage."; | 1106 "V8 caching strategy for CacheStorage."; |
| 1107 | 1107 |
| 1108 const char kV8CacheStrategiesForCacheStorageDescription[] = | 1108 const char kV8CacheStrategiesForCacheStorageDescription[] = |
| 1109 "Caching strategy of scripts in CacheStorage for the V8 JavaScript " | 1109 "Caching strategy of scripts in CacheStorage for the V8 JavaScript " |
| 1110 "engine."; | 1110 "engine."; |
| 1111 | 1111 |
| 1112 const char kV8CacheStrategiesForCacheStorageNormal[] = "Normal"; | 1112 const char kV8CacheStrategiesForCacheStorageNormal[] = "Normal"; |
| 1113 | 1113 |
| 1114 const char kV8CacheStrategiesForCacheStorageAggressive[] = "Aggressive"; | 1114 const char kV8CacheStrategiesForCacheStorageAggressive[] = "Aggressive"; |
| 1115 | 1115 |
| 1116 const char kSpeculativeLaunchServiceWorkerName[] = | |
| 1117 "Speculative launch of service workers."; | |
| 1118 | |
| 1119 const char kSpeculativeLaunchServiceWorkerDescription[] = | |
| 1120 "Speculatively launch service workers using touch and mouse events."; | |
| 1121 | |
| 1122 const char kMemoryCoordinatorName[] = "Memory coordinator"; | 1116 const char kMemoryCoordinatorName[] = "Memory coordinator"; |
| 1123 | 1117 |
| 1124 const char kMemoryCoordinatorDescription[] = | 1118 const char kMemoryCoordinatorDescription[] = |
| 1125 "Enable memory coordinator instead of memory pressure listeners."; | 1119 "Enable memory coordinator instead of memory pressure listeners."; |
| 1126 | 1120 |
| 1127 const char kServiceWorkerNavigationPreloadName[] = | 1121 const char kServiceWorkerNavigationPreloadName[] = |
| 1128 "Service worker navigation preload."; | 1122 "Service worker navigation preload."; |
| 1129 | 1123 |
| 1130 const char kServiceWorkerNavigationPreloadDescription[] = | 1124 const char kServiceWorkerNavigationPreloadDescription[] = |
| 1131 "Enable web pages to use the experimental service worker navigation " | 1125 "Enable web pages to use the experimental service worker navigation " |
| (...skipping 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2907 const char kEnableEhvInputName[] = | 2901 const char kEnableEhvInputName[] = |
| 2908 "Emoji, handwriting and voice input on opt-in IME menu"; | 2902 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2909 | 2903 |
| 2910 const char kEnableEhvInputDescription[] = | 2904 const char kEnableEhvInputDescription[] = |
| 2911 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2905 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2912 "menu."; | 2906 "menu."; |
| 2913 | 2907 |
| 2914 #endif // #if defined(OS_CHROMEOS) | 2908 #endif // #if defined(OS_CHROMEOS) |
| 2915 | 2909 |
| 2916 } // namespace flag_descriptions | 2910 } // namespace flag_descriptions |
| OLD | NEW |