| Index: chrome/browser/google/google_util_chromeos.cc
|
| diff --git a/chrome/browser/google/google_util_chromeos.cc b/chrome/browser/google/google_util_chromeos.cc
|
| index 06232e4df629a00a1b6f7bf03026305fe2f039d3..41f1245c6e73253ae744a39214aabb2711e3d840 100644
|
| --- a/chrome/browser/google/google_util_chromeos.cc
|
| +++ b/chrome/browser/google/google_util_chromeos.cc
|
| @@ -28,7 +28,7 @@ const base::FilePath::CharType kRLZBrandFilePath[] =
|
| std::string ReadBrandFromFile() {
|
| std::string brand;
|
| base::FilePath brand_file_path(kRLZBrandFilePath);
|
| - if (!file_util::ReadFileToString(brand_file_path, &brand))
|
| + if (!base::ReadFileToString(brand_file_path, &brand))
|
| LOG(WARNING) << "Brand code file missing: " << brand_file_path.value();
|
| TrimWhitespace(brand, TRIM_ALL, &brand);
|
| return brand;
|
|
|