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 a9f91a421ae58094d319dc84ce41b9ae4f400fc5..3555e059f99623c4ae585955a3dceb2408150cd2 100644 |
--- a/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp |
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp |
@@ -88,7 +88,7 @@ String DOMFilePath::removeExtraParentReferences(const String& path) { |
continue; |
if (components[i] == "..") { |
if (canonicalized.size() > 0) |
- canonicalized.removeLast(); |
+ canonicalized.pop_back(); |
continue; |
} |
canonicalized.append(components[i]); |