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 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1557 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1555 | 1558 |
1556 // ============================================================================ | 1559 // ============================================================================ |
1557 // Don't just add flags to the end, put them in the right section in | 1560 // Don't just add flags to the end, put them in the right section in |
1558 // alphabetical order. See top instructions for more. | 1561 // alphabetical order. See top instructions for more. |
1559 // ============================================================================ | 1562 // ============================================================================ |
1560 | 1563 |
1561 } // namespace flag_descriptions | 1564 } // namespace flag_descriptions |
1562 | 1565 |
1563 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1566 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |