summaryrefslogtreecommitdiffstats
path: root/chrome/tools
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-21 02:07:28 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-21 02:07:28 +0000
commite6d5073d31a3a49112334518790f8642479e7b91 (patch)
tree519c01d63e46cace6e71f1fb6ace124c155539ee /chrome/tools
parenta9974afdf589e27e7c179ddad3b745c659260783 (diff)
downloadchromium_src-e6d5073d31a3a49112334518790f8642479e7b91.zip
chromium_src-e6d5073d31a3a49112334518790f8642479e7b91.tar.gz
chromium_src-e6d5073d31a3a49112334518790f8642479e7b91.tar.bz2
Fix crash_service to use different CommandLine API.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r--chrome/tools/crash_service/crash_service.cc3
1 files changed, 2 insertions, 1 deletions
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))