Index: chrome/browser/search/suggestions/suggestions_source.cc |
diff --git a/chrome/browser/search/suggestions/suggestions_source.cc b/chrome/browser/search/suggestions/suggestions_source.cc |
index 486d53dd706bd8078f051005cf2e92f7e2de74e5..79ea0be69f6908a7da8da8186ec7c770bfd28f27 100644 |
--- a/chrome/browser/search/suggestions/suggestions_source.cc |
+++ b/chrome/browser/search/suggestions/suggestions_source.cc |
@@ -78,7 +78,7 @@ void RenderOutputHtml(const SuggestionsProfile& profile, |
} |
out.push_back("</ul>"); |
out.push_back(kHtmlFooter); |
- *output = JoinString(out, ""); |
+ *output = base::JoinString(out, base::StringPiece()); |
} |
// Fills |output| with the HTML needed to display that no suggestions are |
@@ -90,7 +90,7 @@ void RenderOutputHtmlNoSuggestions(std::string* output) { |
out.push_back("<h1>Suggestions</h1>\n"); |
out.push_back("<p>You have no suggestions.</p>\n"); |
out.push_back(kHtmlFooter); |
- *output = JoinString(out, ""); |
+ *output = base::JoinString(out, base::StringPiece()); |
} |
} // namespace |