diff options
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 7beb40e..6ed9320 100644 --- a/base/file_path.h +++ b/base/file_path.h @@ -129,6 +129,8 @@ class FilePath { const StringType& value() const { return path_; } + bool empty() const { return path_.empty(); } + // Returns true if |character| is in kSeparators. static bool IsSeparator(CharType character); |