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

Unified Diff: third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/core/svg/SVGDocumentExtensions.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
index 6e672b22c4f80f386c0ccfd701c90e2f4d850ae9..d6b7b67a5be6f0dc9b77a9ee5d262ba697c8d2bd 100644
--- a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
@@ -225,7 +225,7 @@ void SVGDocumentExtensions::removeElementFromPendingResources(
elements->remove(element);
if (elements->isEmpty())
- toBeRemoved.append(entry.key);
+ toBeRemoved.push_back(entry.key);
}
clearHasPendingResourcesIfPossible(element);

Powered by Google App Engine
This is Rietveld 408576698