summaryrefslogtreecommitdiffstats
path: root/content/common/plugin_list_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/plugin_list_posix.cc')
-rw-r--r--content/common/plugin_list_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc
index acd7830..afe35d2 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 (!base::ReadFile(filename, buffer, kELFBufferSize))
+ if (!file_util::ReadFile(filename, buffer, kELFBufferSize))
return false;
if (buffer[0] != ELFMAG0 ||