summaryrefslogtreecommitdiffstats
path: root/content/test/image_decoder_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/test/image_decoder_test.cc')
-rw-r--r--content/test/image_decoder_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/test/image_decoder_test.cc b/content/test/image_decoder_test.cc
index 13b3608..351d491 100644
--- a/content/test/image_decoder_test.cc
+++ b/content/test/image_decoder_test.cc
@@ -31,7 +31,7 @@ bool ShouldSkipFile(const base::FilePath& path,
return false;
int64 image_size = 0;
- file_util::GetFileSize(path, &image_size);
+ base::GetFileSize(path, &image_size);
return (file_selection == TEST_SMALLER) == (image_size > threshold);
}