| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 const char kAccelerated2dCanvasDescription[] = | 364 const char kAccelerated2dCanvasDescription[] = |
| 365 "Enables the use of the GPU to perform 2d canvas rendering instead of " | 365 "Enables the use of the GPU to perform 2d canvas rendering instead of " |
| 366 "using software rendering."; | 366 "using software rendering."; |
| 367 | 367 |
| 368 const char kDisplayList2dCanvasName[] = "Display list 2D canvas"; | 368 const char kDisplayList2dCanvasName[] = "Display list 2D canvas"; |
| 369 | 369 |
| 370 const char kDisplayList2dCanvasDescription[] = | 370 const char kDisplayList2dCanvasDescription[] = |
| 371 "Enables the use of display lists to record 2D canvas commands. This " | 371 "Enables the use of display lists to record 2D canvas commands. This " |
| 372 "allows 2D canvas rasterization to be performed on separate thread."; | 372 "allows 2D canvas rasterization to be performed on separate thread."; |
| 373 | 373 |
| 374 const char kEnable2dCanvasDynamicRenderingModeSwitchingName[] = | |
| 375 "Enable 2D canvas dynamic rendering mode switching."; | |
| 376 | |
| 377 const char kEnable2dCanvasDynamicRenderingModeSwitchingDescription[] = | |
| 378 "There are multiple implementations of the graphics rendering pipeline " | |
| 379 "for the 2D canvas. These different implementations have different " | |
| 380 "performance characteristics. Turning on this flag allows canvas 2D " | |
| 381 "contexts to switch between these implementations on the fly based on " | |
| 382 "how the canvas is used in order to increase performance. For example, " | |
| 383 "going from an implementation that uses the GPU to one that doesn't."; | |
| 384 | |
| 385 const char kExperimentalExtensionApisName[] = "Experimental Extension APIs"; | 374 const char kExperimentalExtensionApisName[] = "Experimental Extension APIs"; |
| 386 | 375 |
| 387 const char kExperimentalExtensionApisDescription[] = | 376 const char kExperimentalExtensionApisDescription[] = |
| 388 "Enables experimental extension APIs. Note that the extension gallery " | 377 "Enables experimental extension APIs. Note that the extension gallery " |
| 389 "doesn't allow you to upload extensions that use experimental APIs."; | 378 "doesn't allow you to upload extensions that use experimental APIs."; |
| 390 | 379 |
| 391 const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs"; | 380 const char kExtensionsOnChromeUrlsName[] = "Extensions on chrome:// URLs"; |
| 392 | 381 |
| 393 const char kExtensionsOnChromeUrlsDescription[] = | 382 const char kExtensionsOnChromeUrlsDescription[] = |
| 394 "Enables running extensions on chrome:// URLs, where extensions " | 383 "Enables running extensions on chrome:// URLs, where extensions " |
| (...skipping 2801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3196 | 3185 |
| 3197 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3186 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3198 "New window behavior for the accessibility keyboard"; | 3187 "New window behavior for the accessibility keyboard"; |
| 3199 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3188 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3200 "Disable new window behavior for the accessibility keyboard " | 3189 "Disable new window behavior for the accessibility keyboard " |
| 3201 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3190 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3202 | 3191 |
| 3203 #endif // defined(OS_CHROMEOS) | 3192 #endif // defined(OS_CHROMEOS) |
| 3204 | 3193 |
| 3205 } // namespace flag_descriptions | 3194 } // namespace flag_descriptions |
| OLD | NEW |