| Index: chrome/installer/util/google_chrome_binaries_distribution.cc
|
| diff --git a/chrome/installer/util/google_chrome_binaries_distribution.cc b/chrome/installer/util/google_chrome_binaries_distribution.cc
|
| index d5b6d24d45475bdfeeae52ba7c23cf00d6b2fb1e..f922783a592c875045250a9eb73aca463074336f 100644
|
| --- a/chrome/installer/util/google_chrome_binaries_distribution.cc
|
| +++ b/chrome/installer/util/google_chrome_binaries_distribution.cc
|
| @@ -21,28 +21,28 @@ GoogleChromeBinariesDistribution::GoogleChromeBinariesDistribution()
|
| : ChromiumBinariesDistribution() {
|
| }
|
|
|
| -std::wstring GoogleChromeBinariesDistribution::GetAppGuid() {
|
| +string16 GoogleChromeBinariesDistribution::GetAppGuid() {
|
| return kChromeBinariesGuid;
|
| }
|
|
|
| -std::wstring GoogleChromeBinariesDistribution::GetAppShortCutName() {
|
| +string16 GoogleChromeBinariesDistribution::GetAppShortCutName() {
|
| return kChromeBinariesName;
|
| }
|
|
|
| -std::wstring GoogleChromeBinariesDistribution::GetStateKey() {
|
| - return std::wstring(google_update::kRegPathClientState)
|
| +string16 GoogleChromeBinariesDistribution::GetStateKey() {
|
| + return string16(google_update::kRegPathClientState)
|
| .append(1, L'\\')
|
| .append(kChromeBinariesGuid);
|
| }
|
|
|
| -std::wstring GoogleChromeBinariesDistribution::GetStateMediumKey() {
|
| - return std::wstring(google_update::kRegPathClientStateMedium)
|
| +string16 GoogleChromeBinariesDistribution::GetStateMediumKey() {
|
| + return string16(google_update::kRegPathClientStateMedium)
|
| .append(1, L'\\')
|
| .append(kChromeBinariesGuid);
|
| }
|
|
|
| -std::wstring GoogleChromeBinariesDistribution::GetVersionKey() {
|
| - return std::wstring(google_update::kRegPathClients)
|
| +string16 GoogleChromeBinariesDistribution::GetVersionKey() {
|
| + return string16(google_update::kRegPathClients)
|
| .append(1, L'\\')
|
| .append(kChromeBinariesGuid);
|
| }
|
|
|