Chromium Code Reviews| Index: base/command_line.cc |
| =================================================================== |
| --- base/command_line.cc (revision 47684) |
| +++ base/command_line.cc (working copy) |
| @@ -303,6 +303,11 @@ |
| } |
| #endif |
| +#if defined(OS_POSIX) |
| +std::string CommandLine::command_line_string() const { |
| + return JoinString(argv_, ' '); |
| +} |
| +#endif |
| // static |
| std::wstring CommandLine::PrefixedSwitchString( |