summaryrefslogtreecommitdiffstats
path: root/chrome/app/breakpad_linux.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_linux.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_linux.cc')
-rw-r--r--chrome/app/breakpad_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/breakpad_linux.cc b/chrome/app/breakpad_linux.cc
index 22f69f9..59dedb9 100644
--- a/chrome/app/breakpad_linux.cc
+++ b/chrome/app/breakpad_linux.cc
@@ -752,8 +752,8 @@ void InitCrashReporter() {
if (!parsed_command_line.HasSwitch(switches::kEnableCrashReporter))
return;
// Get the guid and linux distro from the command line switch.
- std::string switch_value = WideToASCII(
- parsed_command_line.GetSwitchValue(switches::kEnableCrashReporter));
+ std::string switch_value =
+ parsed_command_line.GetSwitchValueASCII(switches::kEnableCrashReporter);
size_t separator = switch_value.find(",");
if (separator != std::string::npos) {
google_update::posix_guid = switch_value.substr(0, separator);