Chromium Code Reviews| Index: gin/modules/console.cc |
| diff --git a/gin/modules/console.cc b/gin/modules/console.cc |
| index d172373f01df2a0a2d194bfbc866e65f17015087..3b444669ffb003195c7a872f3118951ae05b0f6f 100644 |
| --- a/gin/modules/console.cc |
| +++ b/gin/modules/console.cc |
| @@ -25,7 +25,7 @@ void Log(Arguments* args) { |
| args->ThrowError(); |
| return; |
| } |
| - std::cout << JoinString(messages, ' ') << std::endl; |
| + std::cout << base::JoinString(messages, base::StringPiece(" ")) << std::endl; |
|
viettrungluu
2016/01/28 21:32:46
You don't need to include stringpiece.h? (Isn't th
|
| } |
| WrapperInfo g_wrapper_info = { kEmbedderNativeGin }; |