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

Unified Diff: components/variations/variations_url_constants.cc

Issue 2223263002: Change variations service domain for Android Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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: components/variations/variations_url_constants.cc
diff --git a/components/variations/variations_url_constants.cc b/components/variations/variations_url_constants.cc
index dce446a641bb052716622b75e5e442ba7490d71c..f8d9ebc98b0e725b87e3e5d46f1931918101e670 100644
--- a/components/variations/variations_url_constants.cc
+++ b/components/variations/variations_url_constants.cc
@@ -7,7 +7,12 @@
namespace variations {
// Default server of Variations seed info.
+#if defined(OS_ANDROID)
+const char kDefaultServerUrl[] =
+ "https://clientservices.googleapis.com/chrome-variations/seed";
+#else
const char kDefaultServerUrl[] =
"https://clients4.google.com/chrome-variations/seed";
+#endif
} // namespace variations
« no previous file with comments | « components/variations/variations_request_scheduler.cc ('k') | testing/variations/fieldtrial_testing_config_android.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698