Index: components/history/core/browser/top_sites_database.cc |
diff --git a/components/history/core/browser/top_sites_database.cc b/components/history/core/browser/top_sites_database.cc |
index 74ab1156ddaf98ca679cb082ea3e2b530e68e458..d1f024d315a690fe8a6c37c0bea0132009b19970 100644 |
--- a/components/history/core/browser/top_sites_database.cc |
+++ b/components/history/core/browser/top_sites_database.cc |
@@ -85,7 +85,7 @@ std::string GetRedirects(const MostVisitedURL& url) { |
std::vector<std::string> redirects; |
for (size_t i = 0; i < url.redirects.size(); i++) |
redirects.push_back(url.redirects[i].spec()); |
- return JoinString(redirects, ' '); |
+ return base::JoinString(redirects, " "); |
} |
// Decodes redirects from a string and sets them for the url. |