Index: chrome/browser/google/google_util.cc |
diff --git a/chrome/browser/google/google_util.cc b/chrome/browser/google/google_util.cc |
index 50ae223dc9c8acc9da8d9e0266c2c40a554009dd..53c462678eb6eebccd3850a3115c5f49474f7bd0 100644 |
--- a/chrome/browser/google/google_util.cc |
+++ b/chrome/browser/google/google_util.cc |
@@ -139,7 +139,7 @@ bool GetBrand(std::string* brand) { |
base::string16 brand16; |
bool ret = GoogleUpdateSettings::GetBrand(&brand16); |
if (ret) |
- brand->assign(WideToASCII(brand16)); |
+ brand->assign(base::UTF16ToASCII(brand16)); |
return ret; |
} |
@@ -147,7 +147,7 @@ bool GetReactivationBrand(std::string* brand) { |
base::string16 brand16; |
bool ret = GoogleUpdateSettings::GetReactivationBrand(&brand16); |
if (ret) |
- brand->assign(WideToASCII(brand16)); |
+ brand->assign(base::UTF16ToASCII(brand16)); |
return ret; |
} |