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 2996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3007 | 3007 |
3008 // Name of the flag that enables receiving entity suggestions. | 3008 // Name of the flag that enables receiving entity suggestions. |
3009 extern const char kOmniboxEntitySuggestionsName[]; | 3009 extern const char kOmniboxEntitySuggestionsName[]; |
3010 | 3010 |
3011 // Description of the flag that enables entity suggestions. | 3011 // Description of the flag that enables entity suggestions. |
3012 extern const char kOmniboxEntitySuggestionsDescription[]; | 3012 extern const char kOmniboxEntitySuggestionsDescription[]; |
3013 | 3013 |
3014 extern const char kPauseBackgroundTabsName[]; | 3014 extern const char kPauseBackgroundTabsName[]; |
3015 extern const char kPauseBackgroundTabsDescription[]; | 3015 extern const char kPauseBackgroundTabsDescription[]; |
3016 | 3016 |
3017 // Name of the flag to change the app menu icon. | 3017 // Name of the flag to enable the new app menu icon. |
3018 extern const char kAppMenuIconName[]; | 3018 extern const char kEnableNewAppMenuIconName[]; |
3019 | 3019 |
3020 // Description of the flag to change the app menu icon. | 3020 // Description of the flag to enable the new app menu icon. |
3021 extern const char kAppMenuIconDescription[]; | 3021 extern const char kEnableNewAppMenuIconDescription[]; |
3022 | |
3023 // Description of the app menu icon's old appearance. | |
3024 extern const char kAppMenuIconOldBehavior[]; | |
3025 | |
3026 // Description of the app menu animated icon's persistent opened state. | |
3027 extern const char kAppMenuIconPersistentOpenedState[]; | |
3028 | |
3029 // Description of the app menu animated icon's persistent closed state. | |
3030 extern const char kAppMenuIconPersistentClosedState[]; | |
3031 | 3022 |
3032 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 3023 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
3033 // defined(OS_WIN) | 3024 // defined(OS_WIN) |
3034 | 3025 |
3035 #if defined(OS_CHROMEOS) | 3026 #if defined(OS_CHROMEOS) |
3036 | 3027 |
3037 // Name of the flag that enables ChromeVox support for ARC. | 3028 // Name of the flag that enables ChromeVox support for ARC. |
3038 extern const char kEnableChromevoxArcSupportName[]; | 3029 extern const char kEnableChromevoxArcSupportName[]; |
3039 | 3030 |
3040 // Description of the flag that enables ChromeVox support for ARC. | 3031 // Description of the flag that enables ChromeVox support for ARC. |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3318 // current URL. | 3309 // current URL. |
3319 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3310 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
3320 | 3311 |
3321 // Description of the about: flag for displaying the title of the omnibox match | 3312 // Description of the about: flag for displaying the title of the omnibox match |
3322 // for current URL. | 3313 // for current URL. |
3323 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3314 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
3324 | 3315 |
3325 } // namespace flag_descriptions | 3316 } // namespace flag_descriptions |
3326 | 3317 |
3327 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3318 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |