diff options
author | tkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 05:00:25 +0000 |
---|---|---|
committer | tkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 05:00:25 +0000 |
commit | 2c8088a4452c2c204237ba9f2f3706e7eeaaf35b (patch) | |
tree | cc21ba5595d16b4b441206240af0606fe7fffb18 /base/file_util.cc | |
parent | 1c8a50abea168e3ff3a3346387ab04936c4a3180 (diff) | |
download | chromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.zip chromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.tar.gz chromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.tar.bz2 |
Remove file_util::TrimTrailingSeparators(), which is deprecated and
doesn't work well for Windows root drives.
BUG=24722
TEST=existing tests are enough.
Review URL: http://codereview.chromium.org/271086
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.cc')
-rw-r--r-- | base/file_util.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/file_util.cc b/base/file_util.cc index d3a989b5..9976d88 100644 --- a/base/file_util.cc +++ b/base/file_util.cc @@ -47,11 +47,6 @@ bool EnsureEndsWithSeparator(FilePath* path) { return true; } -void TrimTrailingSeparator(std::wstring* dir) { - while (dir->length() > 1 && EndsWithSeparator(dir)) - dir->resize(dir->length() - 1); -} - FilePath::StringType GetFileExtensionFromPath(const FilePath& path) { FilePath::StringType file_name = path.BaseName().value(); const FilePath::StringType::size_type last_dot = |