| 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 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 | 1020 |
| 1021 // Description for the Run all Flash in Allow mode feature. | 1021 // Description for the Run all Flash in Allow mode feature. |
| 1022 extern const char kRunAllFlashInAllowModeDescription[]; | 1022 extern const char kRunAllFlashInAllowModeDescription[]; |
| 1023 | 1023 |
| 1024 // Name of the flag to turn on experiental pinch to scale. | 1024 // Name of the flag to turn on experiental pinch to scale. |
| 1025 extern const char kPinchScaleName[]; | 1025 extern const char kPinchScaleName[]; |
| 1026 | 1026 |
| 1027 // Description of the flag to turn on experiental pinch to scale. | 1027 // Description of the flag to turn on experiental pinch to scale. |
| 1028 extern const char kPinchScaleDescription[]; | 1028 extern const char kPinchScaleDescription[]; |
| 1029 | 1029 |
| 1030 // Name for the flag to enable 'navigator.credentials'. | |
| 1031 extern const char kCredentialManagerApiName[]; | |
| 1032 | |
| 1033 // Description for the flag to enable 'navigator.credentials'. | |
| 1034 extern const char kCredentialManagerApiDescription[]; | |
| 1035 | |
| 1036 // Name for the flag to reduce referer granularity. | 1030 // Name for the flag to reduce referer granularity. |
| 1037 extern const char kReducedReferrerGranularityName[]; | 1031 extern const char kReducedReferrerGranularityName[]; |
| 1038 | 1032 |
| 1039 // Description for the flag to reduce referer granularity. | 1033 // Description for the flag to reduce referer granularity. |
| 1040 extern const char kReducedReferrerGranularityDescription[]; | 1034 extern const char kReducedReferrerGranularityDescription[]; |
| 1041 | 1035 |
| 1042 #if defined(OS_CHROMEOS) | 1036 #if defined(OS_CHROMEOS) |
| 1043 | 1037 |
| 1044 // Name for the flag to enable the new UI service. | 1038 // Name for the flag to enable the new UI service. |
| 1045 extern const char kUseMashName[]; | 1039 extern const char kUseMashName[]; |
| (...skipping 2258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3304 | 3298 |
| 3305 // Description of the autoplay policy that has no user gesture requirements. | 3299 // Description of the autoplay policy that has no user gesture requirements. |
| 3306 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3300 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3307 | 3301 |
| 3308 // Description of the autoplay policy that requires a user gesture. | 3302 // Description of the autoplay policy that requires a user gesture. |
| 3309 extern const char kAutoplayPolicyUserGestureRequired[]; | 3303 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3310 | 3304 |
| 3311 } // namespace flag_descriptions | 3305 } // namespace flag_descriptions |
| 3312 | 3306 |
| 3313 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3307 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |