| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 extern const char kEnableMaterialDesignExtensionsDescription[]; | 58 extern const char kEnableMaterialDesignExtensionsDescription[]; |
| 59 | 59 |
| 60 // Material Design version of feedback form | 60 // Material Design version of feedback form |
| 61 | 61 |
| 62 // Name for the flag to enable the material design feedback UI. | 62 // Name for the flag to enable the material design feedback UI. |
| 63 extern const char kEnableMaterialDesignFeedbackName[]; | 63 extern const char kEnableMaterialDesignFeedbackName[]; |
| 64 | 64 |
| 65 // Description for the flag to enable the material design feedback UI. | 65 // Description for the flag to enable the material design feedback UI. |
| 66 extern const char kEnableMaterialDesignFeedbackDescription[]; | 66 extern const char kEnableMaterialDesignFeedbackDescription[]; |
| 67 | 67 |
| 68 // Material Design of the Incognito NTP. |
| 69 |
| 70 // Name for the flag to enable the material redesign of the Incognito NTP. |
| 71 extern const char kEnableMaterialDesignIncognitoNTPName[]; |
| 72 |
| 73 // Description for the flag to enable the material redesign |
| 74 // of the Incognito NTP. |
| 75 extern const char kEnableMaterialDesignIncognitoNTPDescription[]; |
| 76 |
| 68 // Report URL to SafeSearch | 77 // Report URL to SafeSearch |
| 69 | 78 |
| 70 // Name for the flag to enable reporting URLs to SafeSearch. | 79 // Name for the flag to enable reporting URLs to SafeSearch. |
| 71 extern const char kSafeSearchUrlReportingName[]; | 80 extern const char kSafeSearchUrlReportingName[]; |
| 72 | 81 |
| 73 // Description for the flag to enable reporting URLs to SafeSearch. | 82 // Description for the flag to enable reporting URLs to SafeSearch. |
| 74 extern const char kSafeSearchUrlReportingDescription[]; | 83 extern const char kSafeSearchUrlReportingDescription[]; |
| 75 | 84 |
| 76 // Device scale factor change in content crbug.com/485650. | 85 // Device scale factor change in content crbug.com/485650. |
| 77 | 86 |
| (...skipping 3068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3146 | 3155 |
| 3147 // Description of the about: flag enabling emoji, handwriting and voice input on | 3156 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3148 // opt-in IME menu. | 3157 // opt-in IME menu. |
| 3149 extern const char kEnableEhvInputDescription[]; | 3158 extern const char kEnableEhvInputDescription[]; |
| 3150 | 3159 |
| 3151 #endif // #if defined(OS_CHROMEOS) | 3160 #endif // #if defined(OS_CHROMEOS) |
| 3152 | 3161 |
| 3153 } // namespace flag_descriptions | 3162 } // namespace flag_descriptions |
| 3154 | 3163 |
| 3155 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3164 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |