diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 03:13:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 03:13:55 +0000 |
commit | e29c8c5760df16862da96dc1b68a4ed737ca8594 (patch) | |
tree | 2859d0235273fc9d4fd22e8e6b42201fd0b323d6 /base/file_util.cc | |
parent | 0e9064e4d2a5087623d128773654aad4a855492f (diff) | |
download | chromium_src-e29c8c5760df16862da96dc1b68a4ed737ca8594.zip chromium_src-e29c8c5760df16862da96dc1b68a4ed737ca8594.tar.gz chromium_src-e29c8c5760df16862da96dc1b68a4ed737ca8594.tar.bz2 |
Remove deprecated version of file_util::ReadFileToString function.
BUG=24672
TEST=trybots
Review URL: http://codereview.chromium.org/3250004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57944 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.cc')
-rw-r--r-- | base/file_util.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/base/file_util.cc b/base/file_util.cc index 1689d5b..edf8e69 100644 --- a/base/file_util.cc +++ b/base/file_util.cc @@ -338,10 +338,6 @@ bool MemoryMappedFile::IsValid() { // Deprecated functions ---------------------------------------------------- -bool ReadFileToString(const std::wstring& path, std::string* contents) { - return ReadFileToString(FilePath::FromWStringHack(path), contents); -} - bool AbsolutePath(std::wstring* path_str) { FilePath path(FilePath::FromWStringHack(*path_str)); if (!AbsolutePath(&path)) |