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

Unified Diff: components/nacl/renderer/platform_info.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 years, 5 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/nacl/renderer/platform_info.cc
diff --git a/components/nacl/renderer/platform_info.cc b/components/nacl/renderer/platform_info.cc
index 712526c09f60170582a9fa79eaed997d71e8e94c..22edf182c9a9a82bc46c883fe0d1c084c17ea6bf 100644
--- a/components/nacl/renderer/platform_info.cc
+++ b/components/nacl/renderer/platform_info.cc
@@ -75,7 +75,7 @@ std::string GetCpuFeatures() {
else if (cpu.has_sse2()) features.push_back("+sse2");
// TODO: AES, POPCNT, LZCNT, ...
- return JoinString(features, ',');
+ return base::JoinString(features, ",");
}
} // namespace nacl
« no previous file with comments | « components/history/core/browser/top_sites_database.cc ('k') | components/policy/core/browser/policy_error_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698