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

Unified Diff: gin/modules/console.cc

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 | « crypto/random_unittest.cc ('k') | gin/per_isolate_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/modules/console.cc
diff --git a/gin/modules/console.cc b/gin/modules/console.cc
index d172373f01df2a0a2d194bfbc866e65f17015087..e4713124fde1975d8c78ad3ce860fcdf4b4e9b56 100644
--- a/gin/modules/console.cc
+++ b/gin/modules/console.cc
@@ -6,6 +6,7 @@
#include <iostream>
+#include "base/strings/string_piece.h"
#include "base/strings/string_util.h"
#include "gin/arguments.h"
#include "gin/converter.h"
@@ -25,7 +26,7 @@ void Log(Arguments* args) {
args->ThrowError();
return;
}
- std::cout << JoinString(messages, ' ') << std::endl;
+ std::cout << base::JoinString(messages, " ") << std::endl;
}
WrapperInfo g_wrapper_info = { kEmbedderNativeGin };
« no previous file with comments | « crypto/random_unittest.cc ('k') | gin/per_isolate_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698