| 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 2962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2973 | 2973 |
| 2974 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ | 2974 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
| 2975 defined(OS_WIN) | 2975 defined(OS_WIN) |
| 2976 | 2976 |
| 2977 // Name of the flag that enables receiving entity suggestions. | 2977 // Name of the flag that enables receiving entity suggestions. |
| 2978 extern const char kOmniboxEntitySuggestionsName[]; | 2978 extern const char kOmniboxEntitySuggestionsName[]; |
| 2979 | 2979 |
| 2980 // Description of the flag that enables entity suggestions. | 2980 // Description of the flag that enables entity suggestions. |
| 2981 extern const char kOmniboxEntitySuggestionsDescription[]; | 2981 extern const char kOmniboxEntitySuggestionsDescription[]; |
| 2982 | 2982 |
| 2983 extern const char kPauseBackgroundTabsName[]; |
| 2984 extern const char kPauseBackgroundTabsDescription[]; |
| 2985 |
| 2983 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2986 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
| 2984 // defined(OS_WIN) | 2987 // defined(OS_WIN) |
| 2985 | 2988 |
| 2986 #if defined(OS_CHROMEOS) | 2989 #if defined(OS_CHROMEOS) |
| 2987 | 2990 |
| 2988 // Name of the flag that enables ChromeVox support for ARC. | 2991 // Name of the flag that enables ChromeVox support for ARC. |
| 2989 extern const char kEnableChromevoxArcSupportName[]; | 2992 extern const char kEnableChromevoxArcSupportName[]; |
| 2990 | 2993 |
| 2991 // Description of the flag that enables ChromeVox support for ARC. | 2994 // Description of the flag that enables ChromeVox support for ARC. |
| 2992 extern const char kEnableChromevoxArcSupportDescription[]; | 2995 extern const char kEnableChromevoxArcSupportDescription[]; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3214 extern const char kEnableCopylessPasteName[]; | 3217 extern const char kEnableCopylessPasteName[]; |
| 3215 | 3218 |
| 3216 // Description of the flag that enables Copyless Paste. | 3219 // Description of the flag that enables Copyless Paste. |
| 3217 extern const char kEnableCopylessPasteDescription[]; | 3220 extern const char kEnableCopylessPasteDescription[]; |
| 3218 | 3221 |
| 3219 #endif // defined(OS_ANDROID) | 3222 #endif // defined(OS_ANDROID) |
| 3220 | 3223 |
| 3221 } // namespace flag_descriptions | 3224 } // namespace flag_descriptions |
| 3222 | 3225 |
| 3223 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3226 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |