| Index: chrome/browser/google/google_util.cc
|
| diff --git a/chrome/browser/google/google_util.cc b/chrome/browser/google/google_util.cc
|
| index f3d0575c430cfce8c2db4f79b6b069d0dcc73d0b..d91ea8577fc03f33848e01e7de258d53131a43d4 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(WideToASCII(brand16));
|
| + brand->assign(base::WideToASCII(brand16));
|
| return ret;
|
| }
|
|
|
| @@ -128,7 +128,7 @@ bool GetReactivationBrand(std::string* brand) {
|
| string16 brand16;
|
| bool ret = GoogleUpdateSettings::GetReactivationBrand(&brand16);
|
| if (ret)
|
| - brand->assign(WideToASCII(brand16));
|
| + brand->assign(base::WideToASCII(brand16));
|
| return ret;
|
| }
|
|
|
|
|