Index: base/files/file_util.h |
diff --git a/base/files/file_util.h b/base/files/file_util.h |
index dfc10a35bf5e9ccdeeaddb9b3b5389cd230c2d54..05b3cbf767bbcaed49307db5f065e291abd77b40 100644 |
--- a/base/files/file_util.h |
+++ b/base/files/file_util.h |
@@ -154,9 +154,9 @@ BASE_EXPORT bool ReadFileToString(const FilePath& path, std::string* contents); |
// |max_size|. |
// |contents| may be NULL, in which case this function is useful for its side |
// effect of priming the disk cache (could be used for unit tests). |
-BASE_EXPORT bool ReadFileToString(const FilePath& path, |
- std::string* contents, |
- size_t max_size); |
+BASE_EXPORT bool ReadFileToStringWithMaxSize(const FilePath& path, |
+ std::string* contents, |
+ size_t max_size); |
#if defined(OS_POSIX) |