| 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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
| 10 | 10 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode"; | 352 const char kInProductHelpDemoModeChoiceName[] = "In-Product Help Demo Mode"; |
| 353 | 353 |
| 354 const char kInProductHelpDemoModeChoiceDescription[] = | 354 const char kInProductHelpDemoModeChoiceDescription[] = |
| 355 "Selects the In-Product Help demo mode."; | 355 "Selects the In-Product Help demo mode."; |
| 356 | 356 |
| 357 const char kColorCorrectRenderingName[] = "Color correct rendering"; | 357 const char kColorCorrectRenderingName[] = "Color correct rendering"; |
| 358 | 358 |
| 359 const char kColorCorrectRenderingDescription[] = | 359 const char kColorCorrectRenderingDescription[] = |
| 360 "Enables color correct rendering of web content."; | 360 "Enables color correct rendering of web content."; |
| 361 | 361 |
| 362 const char kExperimentalAppBannersName[] = "Experimental app banners"; |
| 363 |
| 364 const char kExperimentalAppBannersDescription[] = |
| 365 "Enables a new experimental app banner flow and UI"; |
| 366 |
| 362 const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features"; | 367 const char kExperimentalCanvasFeaturesName[] = "Experimental canvas features"; |
| 363 | 368 |
| 364 const char kExperimentalCanvasFeaturesDescription[] = | 369 const char kExperimentalCanvasFeaturesDescription[] = |
| 365 "Enables the use of experimental canvas features which are still in " | 370 "Enables the use of experimental canvas features which are still in " |
| 366 "development."; | 371 "development."; |
| 367 | 372 |
| 368 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; | 373 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; |
| 369 | 374 |
| 370 const char kAccelerated2dCanvasDescription[] = | 375 const char kAccelerated2dCanvasDescription[] = |
| 371 "Enables the use of the GPU to perform 2d canvas rendering instead of " | 376 "Enables the use of the GPU to perform 2d canvas rendering instead of " |
| (...skipping 2904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3276 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3281 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3277 | 3282 |
| 3278 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3283 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3279 const char kUiDevToolsDescription[] = | 3284 const char kUiDevToolsDescription[] = |
| 3280 "Enables inspection of native UI elements. For local inspection use " | 3285 "Enables inspection of native UI elements. For local inspection use " |
| 3281 "chrome://inspect#other"; | 3286 "chrome://inspect#other"; |
| 3282 | 3287 |
| 3283 #endif // defined(OS_CHROMEOS) | 3288 #endif // defined(OS_CHROMEOS) |
| 3284 | 3289 |
| 3285 } // namespace flag_descriptions | 3290 } // namespace flag_descriptions |
| OLD | NEW |