| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 extern const char kAllowNaclSocketApiName[]; | 46 extern const char kAllowNaclSocketApiName[]; |
| 47 extern const char kAllowNaclSocketApiDescription[]; | 47 extern const char kAllowNaclSocketApiDescription[]; |
| 48 | 48 |
| 49 extern const char kAutoplayPolicyName[]; | 49 extern const char kAutoplayPolicyName[]; |
| 50 extern const char kAutoplayPolicyDescription[]; | 50 extern const char kAutoplayPolicyDescription[]; |
| 51 | 51 |
| 52 extern const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[]; | 52 extern const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[]; |
| 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 | 56 |
| 56 extern const char kBackgroundVideoTrackOptimizationName[]; | 57 extern const char kBackgroundVideoTrackOptimizationName[]; |
| 57 extern const char kBackgroundVideoTrackOptimizationDescription[]; | 58 extern const char kBackgroundVideoTrackOptimizationDescription[]; |
| 58 | 59 |
| 59 extern const char kBleAdvertisingInExtensionsName[]; | 60 extern const char kBleAdvertisingInExtensionsName[]; |
| 60 extern const char kBleAdvertisingInExtensionsDescription[]; | 61 extern const char kBleAdvertisingInExtensionsDescription[]; |
| 61 | 62 |
| 62 extern const char kBrowserTaskSchedulerName[]; | 63 extern const char kBrowserTaskSchedulerName[]; |
| 63 extern const char kBrowserTaskSchedulerDescription[]; | 64 extern const char kBrowserTaskSchedulerDescription[]; |
| 64 | 65 |
| (...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1502 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1503 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1503 | 1504 |
| 1504 // ============================================================================ | 1505 // ============================================================================ |
| 1505 // 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 |
| 1506 // alphabetical order. See top instructions for more. | 1507 // alphabetical order. See top instructions for more. |
| 1507 // ============================================================================ | 1508 // ============================================================================ |
| 1508 | 1509 |
| 1509 } // namespace flag_descriptions | 1510 } // namespace flag_descriptions |
| 1510 | 1511 |
| 1511 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1512 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |