Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2789203003: [Views] App Menu Animated Icon (Closed)
Patch Set: Fixes for msw Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2927 matching lines...) Expand 10 before | Expand all | Expand 10 after
2938 2938
2939 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ 2939 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \
2940 defined(OS_WIN) 2940 defined(OS_WIN)
2941 2941
2942 // Name of the flag that enables receiving entity suggestions. 2942 // Name of the flag that enables receiving entity suggestions.
2943 extern const char kOmniboxEntitySuggestionsName[]; 2943 extern const char kOmniboxEntitySuggestionsName[];
2944 2944
2945 // Description of the flag that enables entity suggestions. 2945 // Description of the flag that enables entity suggestions.
2946 extern const char kOmniboxEntitySuggestionsDescription[]; 2946 extern const char kOmniboxEntitySuggestionsDescription[];
2947 2947
2948 // Name of the flag to change the global error icon on the wrench menu.
2949 extern const char kGlobalErrorMenuIconName[];
2950
2951 // Description of the flag to change the global error icon on the wrench menu.
2952 extern const char kGlobalErrorMenuIconDescription[];
2953
2954 // Description of the Global Error Menu Icon's old behavior.
2955 extern const char kGlobalErrorMenuIconOldBehavior[];
2956
2957 // Description of the Global Error Menu Icon's persistent opened state.
2958 extern const char kGlobalErrorMenuIconPersistentOpenedState[];
2959
2960 // Description of the Global Error Menu Icon's persistent closed state.
2961 extern const char kGlobalErrorMenuIconPersistentClosedState[];
2962
2948 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || 2963 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) ||
2949 // defined(OS_WIN) 2964 // defined(OS_WIN)
2950 2965
2951 #if defined(OS_CHROMEOS) 2966 #if defined(OS_CHROMEOS)
2952 2967
2953 // Name of the flag that enables ChromeVox support for ARC. 2968 // Name of the flag that enables ChromeVox support for ARC.
2954 extern const char kEnableChromevoxArcSupportName[]; 2969 extern const char kEnableChromevoxArcSupportName[];
2955 2970
2956 // Description of the flag that enables ChromeVox support for ARC. 2971 // Description of the flag that enables ChromeVox support for ARC.
2957 extern const char kEnableChromevoxArcSupportDescription[]; 2972 extern const char kEnableChromevoxArcSupportDescription[];
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
3162 3177
3163 // Description of the about: flag enabling emoji, handwriting and voice input on 3178 // Description of the about: flag enabling emoji, handwriting and voice input on
3164 // opt-in IME menu. 3179 // opt-in IME menu.
3165 extern const char kEnableEhvInputDescription[]; 3180 extern const char kEnableEhvInputDescription[];
3166 3181
3167 #endif // #if defined(OS_CHROMEOS) 3182 #endif // #if defined(OS_CHROMEOS)
3168 3183
3169 } // namespace flag_descriptions 3184 } // namespace flag_descriptions
3170 3185
3171 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3186 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698