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

Unified Diff: chrome/browser/ui/extensions/extension_message_bubble_factory.cc

Issue 1125353002: Make extensions developer mode warning controllable by experiments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « chrome/browser/extensions/dev_mode_bubble_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome/browser/extensions/dev_mode_bubble_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698