Index: chrome/browser/google/google_util.cc |
=================================================================== |
--- chrome/browser/google/google_util.cc (revision 184354) |
+++ chrome/browser/google/google_util.cc (working copy) |
@@ -120,7 +120,7 @@ |
string16 brand16; |
bool ret = GoogleUpdateSettings::GetBrand(&brand16); |
if (ret) |
- brand->assign(base::WideToASCII(brand16)); |
+ brand->assign(WideToASCII(brand16)); |
return ret; |
} |
@@ -128,7 +128,7 @@ |
string16 brand16; |
bool ret = GoogleUpdateSettings::GetReactivationBrand(&brand16); |
if (ret) |
- brand->assign(base::WideToASCII(brand16)); |
+ brand->assign(WideToASCII(brand16)); |
return ret; |
} |