| 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 16 matching lines...) Expand all Loading... |
| 27 namespace flag_descriptions { | 27 namespace flag_descriptions { |
| 28 | 28 |
| 29 // Cross-platform ------------------------------------------------------------- | 29 // Cross-platform ------------------------------------------------------------- |
| 30 | 30 |
| 31 extern const char kAccelerated2dCanvasName[]; | 31 extern const char kAccelerated2dCanvasName[]; |
| 32 extern const char kAccelerated2dCanvasDescription[]; | 32 extern const char kAccelerated2dCanvasDescription[]; |
| 33 | 33 |
| 34 extern const char kAcceleratedVideoDecodeName[]; | 34 extern const char kAcceleratedVideoDecodeName[]; |
| 35 extern const char kAcceleratedVideoDecodeDescription[]; | 35 extern const char kAcceleratedVideoDecodeDescription[]; |
| 36 | 36 |
| 37 extern const char kAddToShelfName[]; | |
| 38 extern const char kAddToShelfDescription[]; | |
| 39 | |
| 40 extern const char kAffiliationBasedMatchingName[]; | 37 extern const char kAffiliationBasedMatchingName[]; |
| 41 extern const char kAffiliationBasedMatchingDescription[]; | 38 extern const char kAffiliationBasedMatchingDescription[]; |
| 42 | 39 |
| 43 extern const char kAllowInsecureLocalhostName[]; | 40 extern const char kAllowInsecureLocalhostName[]; |
| 44 extern const char kAllowInsecureLocalhostDescription[]; | 41 extern const char kAllowInsecureLocalhostDescription[]; |
| 45 | 42 |
| 46 extern const char kAllowNaclSocketApiName[]; | 43 extern const char kAllowNaclSocketApiName[]; |
| 47 extern const char kAllowNaclSocketApiDescription[]; | 44 extern const char kAllowNaclSocketApiDescription[]; |
| 48 | 45 |
| 46 extern const char kAppBannersName[]; |
| 47 extern const char kAppBannersDescription[]; |
| 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 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[]; |
| (...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1539 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1539 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1540 | 1540 |
| 1541 // ============================================================================ | 1541 // ============================================================================ |
| 1542 // Don't just add flags to the end, put them in the right section in | 1542 // Don't just add flags to the end, put them in the right section in |
| 1543 // alphabetical order. See top instructions for more. | 1543 // alphabetical order. See top instructions for more. |
| 1544 // ============================================================================ | 1544 // ============================================================================ |
| 1545 | 1545 |
| 1546 } // namespace flag_descriptions | 1546 } // namespace flag_descriptions |
| 1547 | 1547 |
| 1548 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1548 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |