Index: chrome/browser/ui/extensions/extension_message_bubble_factory.cc |
diff --git a/chrome/browser/ui/extensions/extension_message_bubble_factory.cc b/chrome/browser/ui/extensions/extension_message_bubble_factory.cc |
index b4a67c183501b2aad73be436984849385bf32baa..387cab9ad1225e934d8f71ba4d493a96a5e62501 100644 |
--- a/chrome/browser/ui/extensions/extension_message_bubble_factory.cc |
+++ b/chrome/browser/ui/extensions/extension_message_bubble_factory.cc |
@@ -21,9 +21,9 @@ namespace { |
base::LazyInstance<std::set<Profile*> > g_profiles_evaluated = |
LAZY_INSTANCE_INITIALIZER; |
-// Currently, we only show these bubbles on windows platforms. This can be |
+// Currently, we only show these bubbles on windows and mac. This can be |
// overridden for testing purposes. |
-#if defined(OS_WIN) |
+#if defined(OS_WIN) || defined(OS_MACOSX) |
Devlin
2015/05/06 21:21:32
This will enable all of these bubbles, not just th
asargent_no_longer_on_chrome
2015/05/06 23:41:24
Jake and I touched base today and I mentioned this
Devlin
2015/05/06 23:51:56
In principle, I'm fine with launching all of these
Devlin
2015/05/07 15:44:17
Just confirmed that the suspicious bubble does WAI
|
bool g_enabled = true; |
#else |
bool g_enabled = false; |