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

Unified Diff: third_party/WebKit/Source/core/html/PublicURLManager.cpp

Issue 2583233002: Migrate WTF::Vector::append() to ::push_back() [part 7 of N] (Closed)
Patch Set: Created 4 years 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/html/PublicURLManager.cpp
diff --git a/third_party/WebKit/Source/core/html/PublicURLManager.cpp b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
index 4695a7a9ab34e05891b79c1d0bbf3698bdc1ad65..baa29eeb0581c165ef083b6af9561de6fdde5cce 100644
--- a/third_party/WebKit/Source/core/html/PublicURLManager.cpp
+++ b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
@@ -84,7 +84,7 @@ void PublicURLManager::revoke(const String& uuid) {
KURL url(ParsedURLString, registeredUrl.key);
getExecutionContext()->removeURLFromMemoryCache(url);
registry->unregisterURL(url);
- urlsToRemove.append(registeredUrl.key);
+ urlsToRemove.push_back(registeredUrl.key);
}
}
for (const auto& url : urlsToRemove)

Powered by Google App Engine
This is Rietveld 408576698