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 99e4b7a..fe4c9df 100644 --- a/chrome/browser/google/google_util.cc +++ b/chrome/browser/google/google_util.cc @@ -112,7 +112,7 @@ bool GetBrand(std::string* brand) { return true; } - string16 brand16; + base::string16 brand16; bool ret = GoogleUpdateSettings::GetBrand(&brand16); if (ret) brand->assign(WideToASCII(brand16)); @@ -120,7 +120,7 @@ bool GetBrand(std::string* brand) { } bool GetReactivationBrand(std::string* brand) { - string16 brand16; + base::string16 brand16; bool ret = GoogleUpdateSettings::GetReactivationBrand(&brand16); if (ret) brand->assign(WideToASCII(brand16)); |