| Index: chrome/browser/chromeos/external_metrics.cc
|
| diff --git a/chrome/browser/chromeos/external_metrics.cc b/chrome/browser/chromeos/external_metrics.cc
|
| index e11d8e027626aff2b59ae21c6fef38253830f17e..47a363e539971f9f44f050d36c0307295047f5c7 100644
|
| --- a/chrome/browser/chromeos/external_metrics.cc
|
| +++ b/chrome/browser/chromeos/external_metrics.cc
|
| @@ -90,7 +90,7 @@ void SetupProgressiveScanFieldTrial() {
|
|
|
| // Write the group to the file to be read by ChromeOS.
|
| int size = static_cast<int>(group_char.length());
|
| - if (file_util::WriteFile(group_file_path, group_char.c_str(), size) == size) {
|
| + if (base::WriteFile(group_file_path, group_char.c_str(), size) == size) {
|
| VLOG(1) << "Configured in group '" << trial->group_name()
|
| << "' ('" << group_char << "') for "
|
| << name_of_experiment << " field trial";
|
|
|