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 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1287 #if defined(OS_ANDROID) | 1287 #if defined(OS_ANDROID) |
1288 | 1288 |
1289 // An about:flags experiment title to enable the Data Saver menu item in the | 1289 // An about:flags experiment title to enable the Data Saver menu item in the |
1290 // main menu rather than under settings on Android | 1290 // main menu rather than under settings on Android |
1291 extern const char kEnableDataReductionProxyMainMenuName[]; | 1291 extern const char kEnableDataReductionProxyMainMenuName[]; |
1292 | 1292 |
1293 // Describes an about:flags experiment to enable the Data Saver menu item in the | 1293 // Describes an about:flags experiment to enable the Data Saver menu item in the |
1294 // main menu rather than under settings on Android | 1294 // main menu rather than under settings on Android |
1295 extern const char kEnableDataReductionProxyMainMenuDescription[]; | 1295 extern const char kEnableDataReductionProxyMainMenuDescription[]; |
1296 | 1296 |
| 1297 // An about:flags experiment title to enable the site breakdown on the Data |
| 1298 // Saver settings page. |
| 1299 extern const char kEnableDataReductionProxySiteBreakdownName[]; |
| 1300 |
| 1301 // Describes an about:flags experiment to enable the site breakdown on the Data |
| 1302 // Saver settings page. |
| 1303 extern const char kEnableDataReductionProxySiteBreakdownDescription[]; |
| 1304 |
1297 #endif // defined(OS_ANDROID) | 1305 #endif // defined(OS_ANDROID) |
1298 | 1306 |
1299 // Name of about:flags option for LCD text. | 1307 // Name of about:flags option for LCD text. |
1300 extern const char kLcdTextName[]; | 1308 extern const char kLcdTextName[]; |
1301 | 1309 |
1302 // Description of about:flags option for LCD text. | 1310 // Description of about:flags option for LCD text. |
1303 extern const char kLcdTextDescription[]; | 1311 extern const char kLcdTextDescription[]; |
1304 | 1312 |
1305 // Name of about:flags option for distance field text. | 1313 // Name of about:flags option for distance field text. |
1306 extern const char kDistanceFieldTextName[]; | 1314 extern const char kDistanceFieldTextName[]; |
(...skipping 1845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3152 | 3160 |
3153 // Description of the about: flag enabling emoji, handwriting and voice input on | 3161 // Description of the about: flag enabling emoji, handwriting and voice input on |
3154 // opt-in IME menu. | 3162 // opt-in IME menu. |
3155 extern const char kEnableEhvInputDescription[]; | 3163 extern const char kEnableEhvInputDescription[]; |
3156 | 3164 |
3157 #endif // #if defined(OS_CHROMEOS) | 3165 #endif // #if defined(OS_CHROMEOS) |
3158 | 3166 |
3159 } // namespace flag_descriptions | 3167 } // namespace flag_descriptions |
3160 | 3168 |
3161 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3169 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |