| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 53 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 54 extern const char kAutoplayPolicyUserGestureRequired[]; | 54 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 55 extern const char kAutoplayPolicyDocumentUserActivation[]; | 55 extern const char kAutoplayPolicyDocumentUserActivation[]; |
| 56 | 56 |
| 57 extern const char kBackgroundVideoTrackOptimizationName[]; | 57 extern const char kBackgroundVideoTrackOptimizationName[]; |
| 58 extern const char kBackgroundVideoTrackOptimizationDescription[]; | 58 extern const char kBackgroundVideoTrackOptimizationDescription[]; |
| 59 | 59 |
| 60 extern const char kBleAdvertisingInExtensionsName[]; | 60 extern const char kBleAdvertisingInExtensionsName[]; |
| 61 extern const char kBleAdvertisingInExtensionsDescription[]; | 61 extern const char kBleAdvertisingInExtensionsDescription[]; |
| 62 | 62 |
| 63 extern const char kBrowserSideNavigationName[]; |
| 64 extern const char kBrowserSideNavigationDescription[]; |
| 65 |
| 63 extern const char kBrowserTaskSchedulerName[]; | 66 extern const char kBrowserTaskSchedulerName[]; |
| 64 extern const char kBrowserTaskSchedulerDescription[]; | 67 extern const char kBrowserTaskSchedulerDescription[]; |
| 65 | 68 |
| 66 extern const char kBypassAppBannerEngagementChecksName[]; | 69 extern const char kBypassAppBannerEngagementChecksName[]; |
| 67 extern const char kBypassAppBannerEngagementChecksDescription[]; | 70 extern const char kBypassAppBannerEngagementChecksDescription[]; |
| 68 | 71 |
| 69 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 72 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 70 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 73 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 71 | 74 |
| 72 extern const char kCastStreamingHwEncodingName[]; | 75 extern const char kCastStreamingHwEncodingName[]; |
| (...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1503 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1501 | 1504 |
| 1502 // ============================================================================ | 1505 // ============================================================================ |
| 1503 // Don't just add flags to the end, put them in the right section in | 1506 // Don't just add flags to the end, put them in the right section in |
| 1504 // alphabetical order. See top instructions for more. | 1507 // alphabetical order. See top instructions for more. |
| 1505 // ============================================================================ | 1508 // ============================================================================ |
| 1506 | 1509 |
| 1507 } // namespace flag_descriptions | 1510 } // namespace flag_descriptions |
| 1508 | 1511 |
| 1509 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1512 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |