| 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 18f461ece0e70161d60241d2fa73da4b70946171..3218b17ec007c99555dc768216f7f50f61b867f1 100644
|
| --- a/components/autofill/core/browser/data_driven_test.cc
|
| +++ b/components/autofill/core/browser/data_driven_test.cc
|
| @@ -15,7 +15,7 @@ namespace {
|
| // Reads |file| into |content|, and converts Windows line-endings to Unix ones.
|
| // Returns true on success.
|
| bool ReadFile(const base::FilePath& file, std::string* content) {
|
| - if (!file_util::ReadFileToString(file, content))
|
| + if (!base::ReadFileToString(file, content))
|
| return false;
|
|
|
| ReplaceSubstringsAfterOffset(content, 0, "\r\n", "\n");
|
|
|