| Index: components/autofill/core/browser/data_driven_test.cc
|
| diff --git a/components/autofill/core/browser/data_driven_test.cc b/components/autofill/core/browser/data_driven_test.cc
|
| index 3218b17ec007c99555dc768216f7f50f61b867f1..757ddbb136d2162e11c14636a8b90f39b685bd70 100644
|
| --- a/components/autofill/core/browser/data_driven_test.cc
|
| +++ b/components/autofill/core/browser/data_driven_test.cc
|
| @@ -24,8 +24,8 @@ bool ReadFile(const base::FilePath& file, std::string* content) {
|
|
|
| // Write |content| to |file|. Returns true on success.
|
| bool WriteFile(const base::FilePath& file, const std::string& content) {
|
| - int write_size = file_util::WriteFile(file, content.c_str(),
|
| - static_cast<int>(content.length()));
|
| + int write_size = base::WriteFile(file, content.c_str(),
|
| + static_cast<int>(content.length()));
|
| return write_size == static_cast<int>(content.length());
|
| }
|
|
|
|
|