summaryrefslogtreecommitdiffstats
path: root/chrome/app/breakpad_win.cc
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-02 21:19:01 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-02 21:19:01 +0000
commit3e76e27b7504fef3150c8074b88954b679740769 (patch)
treee85a2a8b86f952e43da4856bf0f4d0a55587d7f4 /chrome/app/breakpad_win.cc
parent6fc9077537613d42871b3ce6a0eb18f3924f6c99 (diff)
downloadchromium_src-3e76e27b7504fef3150c8074b88954b679740769.zip
chromium_src-3e76e27b7504fef3150c8074b88954b679740769.tar.gz
chromium_src-3e76e27b7504fef3150c8074b88954b679740769.tar.bz2
Fix platform_util::GetChannel on Windows.
GetChannel was confused in multi-user installs. It treated them as CHANNEL_UNKNOWN instead of their correct channels. BUG=81218 TEST=none Review URL: http://codereview.chromium.org/6893158 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_win.cc')
-rw-r--r--chrome/app/breakpad_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/breakpad_win.cc b/chrome/app/breakpad_win.cc
index b7aa15c..f2b29ad 100644
--- a/chrome/app/breakpad_win.cc
+++ b/chrome/app/breakpad_win.cc
@@ -558,8 +558,8 @@ static DWORD __stdcall InitCrashReporterThread(void* param) {
} else {
// Capture more detail in crash dumps for beta and dev channel builds.
string16 channel_string;
- GoogleUpdateSettings::GetChromeChannel(!is_per_user_install,
- &channel_string);
+ GoogleUpdateSettings::GetChromeChannelAndModifiers(!is_per_user_install,
+ &channel_string);
if (channel_string == L"dev" || channel_string == L"beta" ||
channel_string == GoogleChromeSxSDistribution::ChannelName())
dump_type = kLargerDumpType;