| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 235 |
| 236 extern const char kEnableMaterialDesignPolicyPageName[]; | 236 extern const char kEnableMaterialDesignPolicyPageName[]; |
| 237 extern const char kEnableMaterialDesignPolicyPageDescription[]; | 237 extern const char kEnableMaterialDesignPolicyPageDescription[]; |
| 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 kEnableNetworkServiceName[]; |
| 246 extern const char kEnableNetworkServiceDescription[]; |
| 247 |
| 245 extern const char kEnablePictureInPictureName[]; | 248 extern const char kEnablePictureInPictureName[]; |
| 246 extern const char kEnablePictureInPictureDescription[]; | 249 extern const char kEnablePictureInPictureDescription[]; |
| 247 | 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[]; |
| (...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1542 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1545 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1543 | 1546 |
| 1544 // ============================================================================ | 1547 // ============================================================================ |
| 1545 // Don't just add flags to the end, put them in the right section in | 1548 // Don't just add flags to the end, put them in the right section in |
| 1546 // alphabetical order. See top instructions for more. | 1549 // alphabetical order. See top instructions for more. |
| 1547 // ============================================================================ | 1550 // ============================================================================ |
| 1548 | 1551 |
| 1549 } // namespace flag_descriptions | 1552 } // namespace flag_descriptions |
| 1550 | 1553 |
| 1551 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1554 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |