diff options
Diffstat (limited to 'chrome/browser/google/google_util.cc')
-rw-r--r-- | chrome/browser/google/google_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/google/google_util.cc b/chrome/browser/google/google_util.cc index d91ea85..f3d0575 100644 --- a/chrome/browser/google/google_util.cc +++ b/chrome/browser/google/google_util.cc @@ -120,7 +120,7 @@ bool GetBrand(std::string* brand) { string16 brand16; bool ret = GoogleUpdateSettings::GetBrand(&brand16); if (ret) - brand->assign(base::WideToASCII(brand16)); + brand->assign(WideToASCII(brand16)); return ret; } @@ -128,7 +128,7 @@ bool GetReactivationBrand(std::string* brand) { string16 brand16; bool ret = GoogleUpdateSettings::GetReactivationBrand(&brand16); if (ret) - brand->assign(base::WideToASCII(brand16)); + brand->assign(WideToASCII(brand16)); return ret; } |