Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
index 6b9f64bde2380ee615d8376fff456d4bc7dc83f8..50a5b0e9d6755b568f5cf5a11067c8565e364161 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
@@ -91,7 +91,7 @@ String DOMFilePath::removeExtraParentReferences(const String& path) {
canonicalized.pop_back();
continue;
}
- canonicalized.append(components[i]);
+ canonicalized.push_back(components[i]);
}
if (canonicalized.isEmpty())
return DOMFilePath::root;

Powered by Google App Engine
This is Rietveld 408576698