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

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

Issue 2789203003: [Views] App Menu Animated Icon (Closed)
Patch Set: Added layer 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 2977 matching lines...) Expand 10 before | Expand all | Expand 10 after
2988 2988
2989 // Name of the flag that enables receiving entity suggestions. 2989 // Name of the flag that enables receiving entity suggestions.
2990 extern const char kOmniboxEntitySuggestionsName[]; 2990 extern const char kOmniboxEntitySuggestionsName[];
2991 2991
2992 // Description of the flag that enables entity suggestions. 2992 // Description of the flag that enables entity suggestions.
2993 extern const char kOmniboxEntitySuggestionsDescription[]; 2993 extern const char kOmniboxEntitySuggestionsDescription[];
2994 2994
2995 extern const char kPauseBackgroundTabsName[]; 2995 extern const char kPauseBackgroundTabsName[];
2996 extern const char kPauseBackgroundTabsDescription[]; 2996 extern const char kPauseBackgroundTabsDescription[];
2997 2997
2998 // Name of the flag to change the global error icon on the wrench menu.
2999 extern const char kGlobalErrorMenuIconName[];
3000
3001 // Description of the flag to change the global error icon on the wrench menu.
3002 extern const char kGlobalErrorMenuIconDescription[];
3003
3004 // Description of the Global Error Menu Icon's old behavior.
3005 extern const char kGlobalErrorMenuIconOldBehavior[];
3006
3007 // Description of the Global Error Menu Icon's persistent opened state.
3008 extern const char kGlobalErrorMenuIconPersistentOpenedState[];
3009
3010 // Description of the Global Error Menu Icon's persistent closed state.
3011 extern const char kGlobalErrorMenuIconPersistentClosedState[];
3012
2998 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || 3013 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) ||
2999 // defined(OS_WIN) 3014 // defined(OS_WIN)
3000 3015
3001 #if defined(OS_CHROMEOS) 3016 #if defined(OS_CHROMEOS)
3002 3017
3003 // Name of the flag that enables ChromeVox support for ARC. 3018 // Name of the flag that enables ChromeVox support for ARC.
3004 extern const char kEnableChromevoxArcSupportName[]; 3019 extern const char kEnableChromevoxArcSupportName[];
3005 3020
3006 // Description of the flag that enables ChromeVox support for ARC. 3021 // Description of the flag that enables ChromeVox support for ARC.
3007 extern const char kEnableChromevoxArcSupportDescription[]; 3022 extern const char kEnableChromevoxArcSupportDescription[];
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
3229 extern const char kEnableCopylessPasteName[]; 3244 extern const char kEnableCopylessPasteName[];
3230 3245
3231 // Description of the flag that enables Copyless Paste. 3246 // Description of the flag that enables Copyless Paste.
3232 extern const char kEnableCopylessPasteDescription[]; 3247 extern const char kEnableCopylessPasteDescription[];
3233 3248
3234 #endif // defined(OS_ANDROID) 3249 #endif // defined(OS_ANDROID)
3235 3250
3236 } // namespace flag_descriptions 3251 } // namespace flag_descriptions
3237 3252
3238 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3253 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698