| Index: content/common/plugin_list_posix.cc
|
| diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc
|
| index afe35d22de86c6d5153eee6c361836909ddcedeb..acd7830f738aedaed1e44ddc8a383d5b78ab620c 100644
|
| --- a/content/common/plugin_list_posix.cc
|
| +++ b/content/common/plugin_list_posix.cc
|
| @@ -180,7 +180,7 @@ bool ELFMatchesCurrentArchitecture(const base::FilePath& filename) {
|
|
|
| const size_t kELFBufferSize = 5;
|
| char buffer[kELFBufferSize];
|
| - if (!file_util::ReadFile(filename, buffer, kELFBufferSize))
|
| + if (!base::ReadFile(filename, buffer, kELFBufferSize))
|
| return false;
|
|
|
| if (buffer[0] != ELFMAG0 ||
|
|
|