| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 238 |
| 239 extern const char kEnableMidiManagerDynamicInstantiationName[]; | 239 extern const char kEnableMidiManagerDynamicInstantiationName[]; |
| 240 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; | 240 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; |
| 241 | 241 |
| 242 extern const char kEnableNavigationTracingName[]; | 242 extern const char kEnableNavigationTracingName[]; |
| 243 extern const char kEnableNavigationTracingDescription[]; | 243 extern const char kEnableNavigationTracingDescription[]; |
| 244 | 244 |
| 245 extern const char kEnablePictureInPictureName[]; | 245 extern const char kEnablePictureInPictureName[]; |
| 246 extern const char kEnablePictureInPictureDescription[]; | 246 extern const char kEnablePictureInPictureDescription[]; |
| 247 | 247 |
| 248 extern const char kEnableShowClientPlaceholdersForServerLoFiName[]; |
| 249 extern const char kEnableShowClientPlaceholdersForServerLoFiDescription[]; |
| 250 |
| 248 extern const char kEnableTokenBindingName[]; | 251 extern const char kEnableTokenBindingName[]; |
| 249 extern const char kEnableTokenBindingDescription[]; | 252 extern const char kEnableTokenBindingDescription[]; |
| 250 | 253 |
| 251 extern const char kEnableUseZoomForDsfName[]; | 254 extern const char kEnableUseZoomForDsfName[]; |
| 252 extern const char kEnableUseZoomForDsfDescription[]; | 255 extern const char kEnableUseZoomForDsfDescription[]; |
| 253 extern const char kEnableUseZoomForDsfChoiceDefault[]; | 256 extern const char kEnableUseZoomForDsfChoiceDefault[]; |
| 254 extern const char kEnableUseZoomForDsfChoiceEnabled[]; | 257 extern const char kEnableUseZoomForDsfChoiceEnabled[]; |
| 255 extern const char kEnableUseZoomForDsfChoiceDisabled[]; | 258 extern const char kEnableUseZoomForDsfChoiceDisabled[]; |
| 256 | 259 |
| 257 extern const char kEnableScrollAnchoringName[]; | 260 extern const char kEnableScrollAnchoringName[]; |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1528 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1531 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1529 | 1532 |
| 1530 // ============================================================================ | 1533 // ============================================================================ |
| 1531 // Don't just add flags to the end, put them in the right section in | 1534 // Don't just add flags to the end, put them in the right section in |
| 1532 // alphabetical order. See top instructions for more. | 1535 // alphabetical order. See top instructions for more. |
| 1533 // ============================================================================ | 1536 // ============================================================================ |
| 1534 | 1537 |
| 1535 } // namespace flag_descriptions | 1538 } // namespace flag_descriptions |
| 1536 | 1539 |
| 1537 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1540 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |