| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 219 |
| 220 extern const char kEnableMaterialDesignExtensionsName[]; | 220 extern const char kEnableMaterialDesignExtensionsName[]; |
| 221 extern const char kEnableMaterialDesignExtensionsDescription[]; | 221 extern const char kEnableMaterialDesignExtensionsDescription[]; |
| 222 | 222 |
| 223 extern const char kEnableMaterialDesignFeedbackName[]; | 223 extern const char kEnableMaterialDesignFeedbackName[]; |
| 224 extern const char kEnableMaterialDesignFeedbackDescription[]; | 224 extern const char kEnableMaterialDesignFeedbackDescription[]; |
| 225 | 225 |
| 226 extern const char kEnableMaterialDesignPolicyPageName[]; | 226 extern const char kEnableMaterialDesignPolicyPageName[]; |
| 227 extern const char kEnableMaterialDesignPolicyPageDescription[]; | 227 extern const char kEnableMaterialDesignPolicyPageDescription[]; |
| 228 | 228 |
| 229 extern const char kEnableMaterialDesignSettingsName[]; | |
| 230 extern const char kEnableMaterialDesignSettingsDescription[]; | |
| 231 | |
| 232 extern const char kEnableMidiManagerDynamicInstantiationName[]; | 229 extern const char kEnableMidiManagerDynamicInstantiationName[]; |
| 233 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; | 230 extern const char kEnableMidiManagerDynamicInstantiationDescription[]; |
| 234 | 231 |
| 235 extern const char kEnableNavigationTracingName[]; | 232 extern const char kEnableNavigationTracingName[]; |
| 236 extern const char kEnableNavigationTracingDescription[]; | 233 extern const char kEnableNavigationTracingDescription[]; |
| 237 | 234 |
| 238 extern const char kEnablePictureInPictureName[]; | 235 extern const char kEnablePictureInPictureName[]; |
| 239 extern const char kEnablePictureInPictureDescription[]; | 236 extern const char kEnablePictureInPictureDescription[]; |
| 240 | 237 |
| 241 extern const char kEnableTokenBindingName[]; | 238 extern const char kEnableTokenBindingName[]; |
| (...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1496 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1500 | 1497 |
| 1501 // ============================================================================ | 1498 // ============================================================================ |
| 1502 // Don't just add flags to the end, put them in the right section in | 1499 // Don't just add flags to the end, put them in the right section in |
| 1503 // alphabetical order. See top instructions for more. | 1500 // alphabetical order. See top instructions for more. |
| 1504 // ============================================================================ | 1501 // ============================================================================ |
| 1505 | 1502 |
| 1506 } // namespace flag_descriptions | 1503 } // namespace flag_descriptions |
| 1507 | 1504 |
| 1508 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1505 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |