From e6d5073d31a3a49112334518790f8642479e7b91 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Wed, 21 Jan 2009 02:07:28 +0000 Subject: Fix crash_service to use different CommandLine API. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8356 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/tools/crash_service/crash_service.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/tools') diff --git a/chrome/tools/crash_service/crash_service.cc b/chrome/tools/crash_service/crash_service.cc index b71f69c..56f524b 100644 --- a/chrome/tools/crash_service/crash_service.cc +++ b/chrome/tools/crash_service/crash_service.cc @@ -195,7 +195,8 @@ bool CrashService::Initialize(const std::wstring& command_line) { return false; } - CommandLine cmd_line(command_line); + CommandLine cmd_line(L""); + cmd_line.ParseFromString(command_line); // We can override the send reports quota with a command line switch. if (cmd_line.HasSwitch(kMaxReports)) -- cgit v1.1