summaryrefslogtreecommitdiffstats
path: root/chrome/app/breakpad_win.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 23:06:43 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 23:06:43 +0000
commit6958825220097145e6b4633bad2b5f0c37d341d3 (patch)
tree434cbc15b902514ac2715172a96ecd1961da1934 /chrome/app/breakpad_win.cc
parentf805fe8d565caf479ea438adfd1cd9a0f58b52ab (diff)
downloadchromium_src-6958825220097145e6b4633bad2b5f0c37d341d3.zip
chromium_src-6958825220097145e6b4633bad2b5f0c37d341d3.tar.gz
chromium_src-6958825220097145e6b4633bad2b5f0c37d341d3.tar.bz2
De-wstringify some of our breakpad interfaces.
Review URL: http://codereview.chromium.org/3050035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54833 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_win.cc')
-rw-r--r--chrome/app/breakpad_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/breakpad_win.cc b/chrome/app/breakpad_win.cc
index efb5b3e..a21f5b5 100644
--- a/chrome/app/breakpad_win.cc
+++ b/chrome/app/breakpad_win.cc
@@ -526,7 +526,7 @@ void InitCrashReporterWithDllPath(const std::wstring& dll_path) {
// Query the custom_info now because if we do it in the thread it's going to
// fail in the sandbox. The thread will delete this object.
CrashReporterInfo* info(new CrashReporterInfo);
- info->process_type = command.GetSwitchValue(switches::kProcessType);
+ info->process_type = command.GetSwitchValueNative(switches::kProcessType);
if (info->process_type.empty())
info->process_type = L"browser";