| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 | 285 |
| 286 extern const char kEnableWebfontsInterventionTriggerName[]; | 286 extern const char kEnableWebfontsInterventionTriggerName[]; |
| 287 extern const char kEnableWebfontsInterventionTriggerDescription[]; | 287 extern const char kEnableWebfontsInterventionTriggerDescription[]; |
| 288 | 288 |
| 289 extern const char kEnableWebNotificationCustomLayoutsName[]; | 289 extern const char kEnableWebNotificationCustomLayoutsName[]; |
| 290 extern const char kEnableWebNotificationCustomLayoutsDescription[]; | 290 extern const char kEnableWebNotificationCustomLayoutsDescription[]; |
| 291 | 291 |
| 292 extern const char kExpensiveBackgroundTimerThrottlingName[]; | 292 extern const char kExpensiveBackgroundTimerThrottlingName[]; |
| 293 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; | 293 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; |
| 294 | 294 |
| 295 extern const char kExperimentalAppBannersName[]; |
| 296 extern const char kExperimentalAppBannersDescription[]; |
| 297 |
| 295 extern const char kExperimentalCanvasFeaturesName[]; | 298 extern const char kExperimentalCanvasFeaturesName[]; |
| 296 extern const char kExperimentalCanvasFeaturesDescription[]; | 299 extern const char kExperimentalCanvasFeaturesDescription[]; |
| 297 | 300 |
| 298 extern const char kExperimentalExtensionApisName[]; | 301 extern const char kExperimentalExtensionApisName[]; |
| 299 extern const char kExperimentalExtensionApisDescription[]; | 302 extern const char kExperimentalExtensionApisDescription[]; |
| 300 | 303 |
| 301 extern const char kExperimentalHotwordHardwareName[]; | 304 extern const char kExperimentalHotwordHardwareName[]; |
| 302 extern const char kExperimentalHotwordHardwareDescription[]; | 305 extern const char kExperimentalHotwordHardwareDescription[]; |
| 303 | 306 |
| 304 extern const char kExperimentalKeyboardLockUiName[]; | 307 extern const char kExperimentalKeyboardLockUiName[]; |
| (...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1539 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1542 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1540 | 1543 |
| 1541 // ============================================================================ | 1544 // ============================================================================ |
| 1542 // Don't just add flags to the end, put them in the right section in | 1545 // Don't just add flags to the end, put them in the right section in |
| 1543 // alphabetical order. See top instructions for more. | 1546 // alphabetical order. See top instructions for more. |
| 1544 // ============================================================================ | 1547 // ============================================================================ |
| 1545 | 1548 |
| 1546 } // namespace flag_descriptions | 1549 } // namespace flag_descriptions |
| 1547 | 1550 |
| 1548 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1551 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |