| 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;
|
| }
|
|
|