| 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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1353 // Describes an about:flags experiment to enable the site breakdown on the Data | 1353 // Describes an about:flags experiment to enable the site breakdown on the Data |
| 1354 // Saver settings page. | 1354 // Saver settings page. |
| 1355 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; | 1355 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; |
| 1356 | 1356 |
| 1357 // An about:flags experiment title to enable offline page previews. | 1357 // An about:flags experiment title to enable offline page previews. |
| 1358 extern const char kEnableOfflinePreviewsName[]; | 1358 extern const char kEnableOfflinePreviewsName[]; |
| 1359 | 1359 |
| 1360 // Describes an about:flags experiment to enable offline page previews. | 1360 // Describes an about:flags experiment to enable offline page previews. |
| 1361 extern const char kEnableOfflinePreviewsDescription[]; | 1361 extern const char kEnableOfflinePreviewsDescription[]; |
| 1362 | 1362 |
| 1363 // An about:flags experiment title to enable client-side Lo-Fi previews. |
| 1364 extern const char kEnableClientLoFiName[]; |
| 1365 |
| 1366 // Describes an about:flags experiment to enable client-side Lo-Fi previews. |
| 1367 extern const char kEnableClientLoFiDescription[]; |
| 1368 |
| 1363 #endif // defined(OS_ANDROID) | 1369 #endif // defined(OS_ANDROID) |
| 1364 | 1370 |
| 1365 // Name of about:flags option for LCD text. | 1371 // Name of about:flags option for LCD text. |
| 1366 extern const char kLcdTextName[]; | 1372 extern const char kLcdTextName[]; |
| 1367 | 1373 |
| 1368 // Description of about:flags option for LCD text. | 1374 // Description of about:flags option for LCD text. |
| 1369 extern const char kLcdTextDescription[]; | 1375 extern const char kLcdTextDescription[]; |
| 1370 | 1376 |
| 1371 // Name of about:flags option for distance field text. | 1377 // Name of about:flags option for distance field text. |
| 1372 extern const char kDistanceFieldTextName[]; | 1378 extern const char kDistanceFieldTextName[]; |
| (...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 // a hard-reload. | 3409 // a hard-reload. |
| 3404 extern const char kLocationHardReloadDescription[]; | 3410 extern const char kLocationHardReloadDescription[]; |
| 3405 | 3411 |
| 3406 // Name and description for the capture-thumbnail-on-load-finished flag. | 3412 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3407 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3413 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3414 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3409 | 3415 |
| 3410 } // namespace flag_descriptions | 3416 } // namespace flag_descriptions |
| 3411 | 3417 |
| 3412 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3418 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |