diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-21 22:59:05 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-21 22:59:05 +0000 |
commit | 33eb5ad09b9cc9fe9f1fb95c4ba41ace5c3b6bc8 (patch) | |
tree | 8529954cf39744ce032cbb11013167da1cd3798b /base/file_util.h | |
parent | ba6332442ae92c544eb6629c8604c608d6aeb5cd (diff) | |
download | chromium_src-33eb5ad09b9cc9fe9f1fb95c4ba41ace5c3b6bc8.zip chromium_src-33eb5ad09b9cc9fe9f1fb95c4ba41ace5c3b6bc8.tar.gz chromium_src-33eb5ad09b9cc9fe9f1fb95c4ba41ace5c3b6bc8.tar.bz2 |
Stop using and remove deprecated file_util::TrimTrailingSeparator().
Review URL: http://codereview.chromium.org/67271
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14152 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/file_util.h b/base/file_util.h index 6728a0d..8f9cfb1 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -55,11 +55,6 @@ bool EndsWithSeparator(const std::wstring& path); // exists. Returns true if |path| is an existing directory, false otherwise. bool EnsureEndsWithSeparator(FilePath* path); -// Modifies a string by trimming all trailing separators from the end. -// Deprecated. FilePath does this automatically, and if it's constructed from a -// path with a trailing separator, StripTrailingSeparators() may be used. -void TrimTrailingSeparator(std::wstring* dir); - // Strips the topmost directory from the end of 'dir'. Assumes 'dir' does not // refer to a file. // If 'dir' is a root directory, return without change. |