| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 354 |
| 355 // Description of the 'Ignore GPU blacklist' lab. | 355 // Description of the 'Ignore GPU blacklist' lab. |
| 356 extern const char kIgnoreGpuBlacklistDescription[]; | 356 extern const char kIgnoreGpuBlacklistDescription[]; |
| 357 | 357 |
| 358 // Title of the flag to enable the inert visual viewport experiment. | 358 // Title of the flag to enable the inert visual viewport experiment. |
| 359 extern const char kInertVisualViewportName[]; | 359 extern const char kInertVisualViewportName[]; |
| 360 | 360 |
| 361 // Description of the flag to enable the inert visual viewport experiment. | 361 // Description of the flag to enable the inert visual viewport experiment. |
| 362 extern const char kInertVisualViewportDescription[]; | 362 extern const char kInertVisualViewportDescription[]; |
| 363 | 363 |
| 364 // Name of the 'Color correct rendering' lab. |
| 365 extern const char kColorCorrectRenderingName[]; |
| 366 |
| 367 // Description of the 'Color correct rendering' lab. |
| 368 extern const char kColorCorrectRenderingDescription[]; |
| 369 |
| 364 // Name of the 'Enable experimental canvas features' lab. | 370 // Name of the 'Enable experimental canvas features' lab. |
| 365 extern const char kExperimentalCanvasFeaturesName[]; | 371 extern const char kExperimentalCanvasFeaturesName[]; |
| 366 | 372 |
| 367 // Description of the 'Enable experimental canvas features' lab. | 373 // Description of the 'Enable experimental canvas features' lab. |
| 368 extern const char kExperimentalCanvasFeaturesDescription[]; | 374 extern const char kExperimentalCanvasFeaturesDescription[]; |
| 369 | 375 |
| 370 // Name of the 'Accelerated 2D canvas' lab. | 376 // Name of the 'Accelerated 2D canvas' lab. |
| 371 extern const char kAccelerated2dCanvasName[]; | 377 extern const char kAccelerated2dCanvasName[]; |
| 372 | 378 |
| 373 // Description of the 'Accelerated 2D canvas' lab. | 379 // Description of the 'Accelerated 2D canvas' lab. |
| (...skipping 2884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3258 extern const char kEnableCopylessPasteName[]; | 3264 extern const char kEnableCopylessPasteName[]; |
| 3259 | 3265 |
| 3260 // Description of the flag that enables Copyless Paste. | 3266 // Description of the flag that enables Copyless Paste. |
| 3261 extern const char kEnableCopylessPasteDescription[]; | 3267 extern const char kEnableCopylessPasteDescription[]; |
| 3262 | 3268 |
| 3263 #endif // defined(OS_ANDROID) | 3269 #endif // defined(OS_ANDROID) |
| 3264 | 3270 |
| 3265 } // namespace flag_descriptions | 3271 } // namespace flag_descriptions |
| 3266 | 3272 |
| 3267 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3273 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |