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

Unified Diff: chrome/common/chrome_switches.cc

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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 0ef02012ca1ca8b831e39dabba5647166e5b59f1..30ce12fcb64a9fcf8ca8f0f4eef8536e41de9a83 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -1149,6 +1149,16 @@ extern const char kDisableInputImeAPI[] = "disable-input-ime-api";
extern const char kEnableInputImeAPI[] = "enable-input-ime-api";
#endif
+#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \
+ defined(OS_WIN)
+extern const char kGlobalErrorMenuIcon[] = "global-app-menu";
+extern const char kGlobalErrorMenuIconOldBehavior[] = "old-behavior";
+extern const char kGlobalErrorMenuIconPersistentOpenedState[] =
+ "persistent-opened-state";
+extern const char kGlobalErrorMenuIconPersistentClosedState[] =
+ "persistent-closed-state";
+#endif
+
bool ExtensionsDisabled(const base::CommandLine& command_line) {
return command_line.HasSwitch(switches::kDisableExtensions) ||
command_line.HasSwitch(switches::kDisableExtensionsExcept);

Powered by Google App Engine
This is Rietveld 408576698