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 41f1245c6e73253ae744a39214aabb2711e3d840..a7443dc85875d1ed3d454da968dd163fc264b67e 100644 |
--- a/chrome/browser/google/google_util_chromeos.cc |
+++ b/chrome/browser/google/google_util_chromeos.cc |
@@ -30,7 +30,7 @@ std::string ReadBrandFromFile() { |
base::FilePath brand_file_path(kRLZBrandFilePath); |
if (!base::ReadFileToString(brand_file_path, &brand)) |
LOG(WARNING) << "Brand code file missing: " << brand_file_path.value(); |
- TrimWhitespace(brand, TRIM_ALL, &brand); |
+ base::TrimWhitespace(brand, base::TRIM_ALL, &brand); |
return brand; |
} |