diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 12:52:11 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 12:52:11 +0000 |
commit | a18f79afc7cf1d3369d07a2e59b4ee100d9ff9fa (patch) | |
tree | daa803fd1d74abf5c25bb7ab04d905fbff3882cc /base/file_util_posix.cc | |
parent | d505a6d89230804cb9eeecc641b383bb2d4d5ce0 (diff) | |
download | chromium_src-a18f79afc7cf1d3369d07a2e59b4ee100d9ff9fa.zip chromium_src-a18f79afc7cf1d3369d07a2e59b4ee100d9ff9fa.tar.gz chromium_src-a18f79afc7cf1d3369d07a2e59b4ee100d9ff9fa.tar.bz2 |
Deprecate GetDirectoryFromPath on non-Windows.
Due to a bunch of changes I made last week, we now only need this
in Windows-specific codepaths.
BUG=24672
Review URL: http://codereview.chromium.org/654009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39715 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util_posix.cc')
-rw-r--r-- | base/file_util_posix.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc index 590b94d..c6069e6 100644 --- a/base/file_util_posix.cc +++ b/base/file_util_posix.cc @@ -60,18 +60,6 @@ static const char* kTempFileName = "com.google.chrome.XXXXXX"; static const char* kTempFileName = "org.chromium.XXXXXX"; #endif -std::wstring GetDirectoryFromPath(const std::wstring& path) { - if (EndsWithSeparator(path)) { - return FilePath::FromWStringHack(path) - .StripTrailingSeparators() - .ToWStringHack(); - } else { - char full_path[PATH_MAX]; - base::strlcpy(full_path, WideToUTF8(path).c_str(), arraysize(full_path)); - return UTF8ToWide(dirname(full_path)); - } -} - bool AbsolutePath(FilePath* path) { char full_path[PATH_MAX]; if (realpath(path->value().c_str(), full_path) == NULL) |