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

Unified Diff: extensions/renderer/print_native_handler.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
« no previous file with comments | « extensions/common/url_pattern.cc ('k') | gin/modules/console.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/print_native_handler.cc
diff --git a/extensions/renderer/print_native_handler.cc b/extensions/renderer/print_native_handler.cc
index 8e71eb5f7b5ccba832b1db96d4240765d5a19772..b6ee63a7e59c2e29014efecda27d8cde6f11cd98 100644
--- a/extensions/renderer/print_native_handler.cc
+++ b/extensions/renderer/print_native_handler.cc
@@ -26,7 +26,7 @@ void PrintNativeHandler::Print(
for (int i = 0; i < args.Length(); ++i)
components.push_back(*v8::String::Utf8Value(args[i]));
- LOG(ERROR) << JoinString(components, ',');
+ LOG(ERROR) << base::JoinString(components, ",");
}
} // namespace extensions
« no previous file with comments | « extensions/common/url_pattern.cc ('k') | gin/modules/console.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698