summaryrefslogtreecommitdiff
path: root/base/files/file_path.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/files/file_path.cc')
-rw-r--r--base/files/file_path.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/base/files/file_path.cc b/base/files/file_path.cc
index 8f7fcc2c58..5b1eb29dd6 100644
--- a/base/files/file_path.cc
+++ b/base/files/file_path.cc
@@ -174,7 +174,7 @@ FilePath::FilePath() {
FilePath::FilePath(const FilePath& that) : path_(that.path_) {
}
-FilePath::FilePath(FilePath&& that) = default;
+FilePath::FilePath(FilePath&& that) noexcept = default;
FilePath::FilePath(StringPieceType path) {
path.CopyToString(&path_);
@@ -563,6 +563,12 @@ FilePath FilePath::StripTrailingSeparators() const {
}
bool FilePath::ReferencesParent() const {
+ if (path_.find(kParentDirectory) == StringType::npos) {
+ // GetComponents is quite expensive, so avoid calling it in the majority
+ // of cases where there isn't a kParentDirectory anywhere in the path.
+ return false;
+ }
+
std::vector<StringType> components;
GetComponents(&components);