Index: content/common/plugin_list_posix.cc |
diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc |
index abc74bac21ee57b0e9ee006c712372da28bed70d..47856b3b332ccaf1eff1e9bcaa41554061e3f271 100644 |
--- a/content/common/plugin_list_posix.cc |
+++ b/content/common/plugin_list_posix.cc |
@@ -108,7 +108,7 @@ bool IsBlacklistedBySha1sumAndQuirks(const base::FilePath& path) { |
}; |
int64 size; |
- if (!file_util::GetFileSize(path, &size)) |
+ if (!base::GetFileSize(path, &size)) |
return false; |
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(bad_entries); i++) { |
if (bad_entries[i].size != size) |