| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 231 |
| 232 extern const char kEnableMaterialDesignSettingsName[]; | 232 extern const char kEnableMaterialDesignSettingsName[]; |
| 233 extern const char kEnableMaterialDesignSettingsDescription[]; | 233 extern const char kEnableMaterialDesignSettingsDescription[]; |
| 234 | 234 |
| 235 extern const char kEnableMidiManagerDynamicInstantiationName[]; | 235 extern const char kEnableMidiManagerDynamicInstantiationName[]; |
| 236 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; | 236 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; |
| 237 | 237 |
| 238 extern const char kEnableNavigationTracingName[]; | 238 extern const char kEnableNavigationTracingName[]; |
| 239 extern const char kEnableNavigationTracingDescription[]; | 239 extern const char kEnableNavigationTracingDescription[]; |
| 240 | 240 |
| 241 extern const char kEnablePictureInPictureName[]; |
| 242 extern const char kEnablePictureInPictureDescription[]; |
| 243 |
| 241 extern const char kEnableTokenBindingName[]; | 244 extern const char kEnableTokenBindingName[]; |
| 242 extern const char kEnableTokenBindingDescription[]; | 245 extern const char kEnableTokenBindingDescription[]; |
| 243 | 246 |
| 244 extern const char kEnableUseZoomForDsfName[]; | 247 extern const char kEnableUseZoomForDsfName[]; |
| 245 extern const char kEnableUseZoomForDsfDescription[]; | 248 extern const char kEnableUseZoomForDsfDescription[]; |
| 246 extern const char kEnableUseZoomForDsfChoiceDefault[]; | 249 extern const char kEnableUseZoomForDsfChoiceDefault[]; |
| 247 extern const char kEnableUseZoomForDsfChoiceEnabled[]; | 250 extern const char kEnableUseZoomForDsfChoiceEnabled[]; |
| 248 extern const char kEnableUseZoomForDsfChoiceDisabled[]; | 251 extern const char kEnableUseZoomForDsfChoiceDisabled[]; |
| 249 | 252 |
| 250 extern const char kEnableScrollAnchoringName[]; | 253 extern const char kEnableScrollAnchoringName[]; |
| (...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1482 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1485 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1483 | 1486 |
| 1484 // ============================================================================ | 1487 // ============================================================================ |
| 1485 // Don't just add flags to the end, put them in the right section in | 1488 // Don't just add flags to the end, put them in the right section in |
| 1486 // alphabetical order. See top instructions for more. | 1489 // alphabetical order. See top instructions for more. |
| 1487 // ============================================================================ | 1490 // ============================================================================ |
| 1488 | 1491 |
| 1489 } // namespace flag_descriptions | 1492 } // namespace flag_descriptions |
| 1490 | 1493 |
| 1491 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1494 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |