| 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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 extern const char kEnableDataReductionProxyMainMenuDescription[]; | 1348 extern const char kEnableDataReductionProxyMainMenuDescription[]; |
| 1349 | 1349 |
| 1350 // An about:flags experiment title to enable the site breakdown on the Data | 1350 // An about:flags experiment title to enable the site breakdown on the Data |
| 1351 // Saver settings page. | 1351 // Saver settings page. |
| 1352 extern const char kEnableDataReductionProxySiteBreakdownName[]; | 1352 extern const char kEnableDataReductionProxySiteBreakdownName[]; |
| 1353 | 1353 |
| 1354 // Describes an about:flags experiment to enable the site breakdown on the Data | 1354 // Describes an about:flags experiment to enable the site breakdown on the Data |
| 1355 // Saver settings page. | 1355 // Saver settings page. |
| 1356 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; | 1356 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; |
| 1357 | 1357 |
| 1358 // An about:flags experiment title to enable offline page previews. |
| 1359 extern const char kEnableOfflinePreviewsName[]; |
| 1360 |
| 1361 // Describes an about:flags experiment to enable offline page previews. |
| 1362 extern const char kEnableOfflinePreviewsDescription[]; |
| 1363 |
| 1358 #endif // defined(OS_ANDROID) | 1364 #endif // defined(OS_ANDROID) |
| 1359 | 1365 |
| 1360 // Name of about:flags option for LCD text. | 1366 // Name of about:flags option for LCD text. |
| 1361 extern const char kLcdTextName[]; | 1367 extern const char kLcdTextName[]; |
| 1362 | 1368 |
| 1363 // Description of about:flags option for LCD text. | 1369 // Description of about:flags option for LCD text. |
| 1364 extern const char kLcdTextDescription[]; | 1370 extern const char kLcdTextDescription[]; |
| 1365 | 1371 |
| 1366 // Name of about:flags option for distance field text. | 1372 // Name of about:flags option for distance field text. |
| 1367 extern const char kDistanceFieldTextName[]; | 1373 extern const char kDistanceFieldTextName[]; |
| (...skipping 2017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3385 extern const char kEnableHeapProfilingTaskProfiler[]; | 3391 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3386 | 3392 |
| 3387 // Name and description of the flag allowing the usage of a small set of | 3393 // Name and description of the flag allowing the usage of a small set of |
| 3388 // server-side suggestions in NTP tiles. | 3394 // server-side suggestions in NTP tiles. |
| 3389 extern const char kUseSuggestionsEvenIfFewFeatureName[]; | 3395 extern const char kUseSuggestionsEvenIfFewFeatureName[]; |
| 3390 extern const char kUseSuggestionsEvenIfFewFeatureDescription[]; | 3396 extern const char kUseSuggestionsEvenIfFewFeatureDescription[]; |
| 3391 | 3397 |
| 3392 } // namespace flag_descriptions | 3398 } // namespace flag_descriptions |
| 3393 | 3399 |
| 3394 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3400 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |