diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 20:45:07 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-09 20:45:07 +0000 |
commit | fa7b1e3db23e140dd31a332fb510420449ce09e4 (patch) | |
tree | 39ad1f8688bd7612a206e90d479b29dfdf287218 /base | |
parent | 8807162a05ecd0c6d6c4659047b1763058cad3c3 (diff) | |
download | chromium_src-fa7b1e3db23e140dd31a332fb510420449ce09e4.zip chromium_src-fa7b1e3db23e140dd31a332fb510420449ce09e4.tar.gz chromium_src-fa7b1e3db23e140dd31a332fb510420449ce09e4.tar.bz2 |
Remove deprecated AbsolutePath function.
Review URL: http://codereview.chromium.org/271037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/file_util.cc | 7 | ||||
-rw-r--r-- | base/file_util.h | 2 |
2 files changed, 0 insertions, 9 deletions
diff --git a/base/file_util.cc b/base/file_util.cc index d3a989b5..37adb04 100644 --- a/base/file_util.cc +++ b/base/file_util.cc @@ -294,13 +294,6 @@ 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)) - return false; - *path_str = path.ToWStringHack(); - return true; -} void AppendToPath(std::wstring* path, const std::wstring& new_ending) { if (!path) { NOTREACHED(); diff --git a/base/file_util.h b/base/file_util.h index 37634b9..e9f9254 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -89,8 +89,6 @@ void AppendToPath(std::wstring* path, const std::wstring& new_ending); // Convert provided relative path into an absolute path. Returns false on // error. On POSIX, this function fails if the path does not exist. bool AbsolutePath(FilePath* path); -// Deprecated temporary compatibility function. -bool AbsolutePath(std::wstring* path); // Returns true if |parent| contains |child|. Both paths are converted to // absolute paths before doing the comparison. |