Chromium Code Reviews| Index: gin/modules/console.cc |
| diff --git a/gin/modules/console.cc b/gin/modules/console.cc |
| index 231d8fc47610ecabfa1345695a63c1f0c95c848f..75241df081a7acd1f95fc8e2a87165890f4966e3 100644 |
| --- a/gin/modules/console.cc |
| +++ b/gin/modules/console.cc |
| @@ -25,7 +25,7 @@ |
| args->ThrowError(); |
| return; |
| } |
| - std::cout << base::JoinString(messages, " ") << std::endl; |
| + std::cout << JoinString(messages, ' ') << std::endl; |
| } |
| WrapperInfo g_wrapper_info = { kEmbedderNativeGin }; |