| 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 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1336 extern const char kEnableDataReductionProxyMainMenuDescription[]; | 1336 extern const char kEnableDataReductionProxyMainMenuDescription[]; |
| 1337 | 1337 |
| 1338 // An about:flags experiment title to enable the site breakdown on the Data | 1338 // An about:flags experiment title to enable the site breakdown on the Data |
| 1339 // Saver settings page. | 1339 // Saver settings page. |
| 1340 extern const char kEnableDataReductionProxySiteBreakdownName[]; | 1340 extern const char kEnableDataReductionProxySiteBreakdownName[]; |
| 1341 | 1341 |
| 1342 // Describes an about:flags experiment to enable the site breakdown on the Data | 1342 // Describes an about:flags experiment to enable the site breakdown on the Data |
| 1343 // Saver settings page. | 1343 // Saver settings page. |
| 1344 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; | 1344 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; |
| 1345 | 1345 |
| 1346 // An about:flags experiment title to enable offline page previews. |
| 1347 extern const char kEnableOfflinePreviewsName[]; |
| 1348 |
| 1349 // Describes an about:flags experiment to enable offline page previews. |
| 1350 extern const char kEnableOfflinePreviewsDescription[]; |
| 1351 |
| 1346 #endif // defined(OS_ANDROID) | 1352 #endif // defined(OS_ANDROID) |
| 1347 | 1353 |
| 1348 // Name of about:flags option for LCD text. | 1354 // Name of about:flags option for LCD text. |
| 1349 extern const char kLcdTextName[]; | 1355 extern const char kLcdTextName[]; |
| 1350 | 1356 |
| 1351 // Description of about:flags option for LCD text. | 1357 // Description of about:flags option for LCD text. |
| 1352 extern const char kLcdTextDescription[]; | 1358 extern const char kLcdTextDescription[]; |
| 1353 | 1359 |
| 1354 // Name of about:flags option for distance field text. | 1360 // Name of about:flags option for distance field text. |
| 1355 extern const char kDistanceFieldTextName[]; | 1361 extern const char kDistanceFieldTextName[]; |
| (...skipping 1983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3339 extern const char kEnableHeapProfilingDescription[]; | 3345 extern const char kEnableHeapProfilingDescription[]; |
| 3340 | 3346 |
| 3341 // Descriptions of the different heap profiling modes. | 3347 // Descriptions of the different heap profiling modes. |
| 3342 extern const char kEnableHeapProfilingModePseudo[]; | 3348 extern const char kEnableHeapProfilingModePseudo[]; |
| 3343 extern const char kEnableHeapProfilingModeNative[]; | 3349 extern const char kEnableHeapProfilingModeNative[]; |
| 3344 extern const char kEnableHeapProfilingTaskProfiler[]; | 3350 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3345 | 3351 |
| 3346 } // namespace flag_descriptions | 3352 } // namespace flag_descriptions |
| 3347 | 3353 |
| 3348 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3354 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |