Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1063)

Unified Diff: chrome/installer/util/google_update_settings.cc

Issue 295893002: Cleanup various Windows installer/breakpad bits. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/installer/util/google_update_settings.h ('k') | chrome/installer/util/master_preferences_dummy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/google_update_settings.cc
===================================================================
--- chrome/installer/util/google_update_settings.cc (revision 271491)
+++ chrome/installer/util/google_update_settings.cc (working copy)
@@ -167,9 +167,9 @@
// Tag the channel name if this is a multi-install.
if (add_multi_modifier && channel_info.IsMultiInstall()) {
if (!channel->empty()) {
- channel->append(1, L'-');
+ channel->push_back(L'-');
}
- channel->append(1, L'm');
+ channel->push_back(L'm');
}
return true;
@@ -409,8 +409,8 @@
system_level);
}
-std::wstring GoogleUpdateSettings::GetChromeChannel(bool system_install) {
- std::wstring channel;
+base::string16 GoogleUpdateSettings::GetChromeChannel(bool system_install) {
+ base::string16 channel;
GetChromeChannelInternal(system_install, false, &channel);
return channel;
}
« no previous file with comments | « chrome/installer/util/google_update_settings.h ('k') | chrome/installer/util/master_preferences_dummy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698