diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 14:31:14 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 14:31:14 +0000 |
commit | ca0a0caf5b257c4c57dfe30db8e73390ff56df81 (patch) | |
tree | d8349a2a1e3163d1ef5124cd52abd69aa3277c32 /base/file_path.h | |
parent | fa2ec14e389ee931a4af09ced0224fe29c0823d9 (diff) | |
download | chromium_src-ca0a0caf5b257c4c57dfe30db8e73390ff56df81.zip chromium_src-ca0a0caf5b257c4c57dfe30db8e73390ff56df81.tar.gz chromium_src-ca0a0caf5b257c4c57dfe30db8e73390ff56df81.tar.bz2 |
Use FilePath in ProfileInfo struct.
BUG=24672
TEST=out/Debug/unit_tests
Review URL: http://codereview.chromium.org/1741012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47370 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_path.h')
-rw-r--r-- | base/file_path.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/file_path.h b/base/file_path.h index 61aa4fb..61baf8f 100644 --- a/base/file_path.h +++ b/base/file_path.h @@ -172,6 +172,8 @@ class FilePath { bool empty() const { return path_.empty(); } + void clear() { path_.clear(); } + // Returns true if |character| is in kSeparators. static bool IsSeparator(CharType character); |