summaryrefslogtreecommitdiffstats
path: root/base/file_util.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 23:15:45 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 23:15:45 +0000
commita97f2b462ac8062e59849bfa2323d90f461fd5ff (patch)
tree5b3d08cc66629b98bd7270440a26b01217b66c0a /base/file_util.h
parent00d7e6289878922b937039cf542144a8c7906e8e (diff)
downloadchromium_src-a97f2b462ac8062e59849bfa2323d90f461fd5ff.zip
chromium_src-a97f2b462ac8062e59849bfa2323d90f461fd5ff.tar.gz
chromium_src-a97f2b462ac8062e59849bfa2323d90f461fd5ff.tar.bz2
Reverting 14152.
TBR=tony Review URL: http://codereview.chromium.org/87066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14154 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util.h')
-rw-r--r--base/file_util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/base/file_util.h b/base/file_util.h
index 8f9cfb1..6728a0d 100644
--- a/base/file_util.h
+++ b/base/file_util.h
@@ -55,6 +55,11 @@ 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.