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

Unified Diff: chrome/browser/supervised_user/supervised_user_interstitial.cc

Issue 1138793003: Remove special Unicorn feedback buckets. (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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/supervised_user/supervised_user_interstitial.cc
diff --git a/chrome/browser/supervised_user/supervised_user_interstitial.cc b/chrome/browser/supervised_user/supervised_user_interstitial.cc
index 45297e0ecb83f3a7cd2543539f166f3e836c14e0..b8d4653b422edb33bf7ad2aae75fb2303ea94df7 100644
--- a/chrome/browser/supervised_user/supervised_user_interstitial.cc
+++ b/chrome/browser/supervised_user/supervised_user_interstitial.cc
@@ -329,16 +329,8 @@ void SupervisedUserInterstitial::CommandReceived(const std::string& command) {
#if defined(OS_ANDROID)
ReportChildAccountFeedback(web_contents_, message, url_);
#else
- std::string bucket;
-#if defined(OS_CHROMEOS)
- bucket = "UnicornCrOS";
-#else
- bucket = "UnicornDesktop";
-#endif
- chrome::ShowFeedbackPage(
- chrome::FindBrowserWithWebContents(web_contents_),
- message,
- bucket);
+ chrome::ShowFeedbackPage(chrome::FindBrowserWithWebContents(web_contents_),
+ message, std::string());
#endif
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698