| 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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1332 // An about:flags experiment title to enable a Data Saver snackbar promo for 1 | 1332 // An about:flags experiment title to enable a Data Saver snackbar promo for 1 |
| 1333 // MB of savings | 1333 // MB of savings |
| 1334 extern const char kEnableDataReductionProxySavingsPromoName[]; | 1334 extern const char kEnableDataReductionProxySavingsPromoName[]; |
| 1335 | 1335 |
| 1336 // Describes an about:flags experiment to enable a Data Saver snackbar promo for | 1336 // Describes an about:flags experiment to enable a Data Saver snackbar promo for |
| 1337 // 1 MB of savings | 1337 // 1 MB of savings |
| 1338 extern const char kEnableDataReductionProxySavingsPromoDescription[]; | 1338 extern const char kEnableDataReductionProxySavingsPromoDescription[]; |
| 1339 | 1339 |
| 1340 #if defined(OS_ANDROID) | 1340 #if defined(OS_ANDROID) |
| 1341 | 1341 |
| 1342 // An about:flags experiment title to enable the Data Saver menu item in the | 1342 // An about:flags experiment title to enable the Data Saver footer on Android |
| 1343 // main menu rather than under settings on Android | |
| 1344 extern const char kEnableDataReductionProxyMainMenuName[]; | 1343 extern const char kEnableDataReductionProxyMainMenuName[]; |
| 1345 | 1344 |
| 1346 // Describes an about:flags experiment to enable the Data Saver menu item in the | 1345 // Describes an about:flags experiment to enable the Data Saver footer in the |
| 1347 // main menu rather than under settings on Android | 1346 // main menu on Android |
| 1348 extern const char kEnableDataReductionProxyMainMenuDescription[]; | 1347 extern const char kEnableDataReductionProxyMainMenuDescription[]; |
| 1349 | 1348 |
| 1350 // An about:flags experiment title to enable the site breakdown on the Data | 1349 // An about:flags experiment title to enable the site breakdown on the Data |
| 1351 // Saver settings page. | 1350 // Saver settings page. |
| 1352 extern const char kEnableDataReductionProxySiteBreakdownName[]; | 1351 extern const char kEnableDataReductionProxySiteBreakdownName[]; |
| 1353 | 1352 |
| 1354 // 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 |
| 1355 // Saver settings page. | 1354 // Saver settings page. |
| 1356 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; | 1355 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; |
| 1357 | 1356 |
| (...skipping 1933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3291 extern const char kEnableWebNfcName[]; | 3290 extern const char kEnableWebNfcName[]; |
| 3292 | 3291 |
| 3293 // Description for the flag to enable WebNFC. | 3292 // Description for the flag to enable WebNFC. |
| 3294 extern const char kEnableWebNfcDescription[]; | 3293 extern const char kEnableWebNfcDescription[]; |
| 3295 | 3294 |
| 3296 #endif // defined(OS_ANDROID) | 3295 #endif // defined(OS_ANDROID) |
| 3297 | 3296 |
| 3298 } // namespace flag_descriptions | 3297 } // namespace flag_descriptions |
| 3299 | 3298 |
| 3300 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3299 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |