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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImport.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/imports/HTMLImport.cpp
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
index 213dcea3cb03c73adbab21f5284c542cec999924..77cd44a3df39fe58eaa82fa486012f7baf1f4d90 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
@@ -103,7 +103,7 @@ void HTMLImport::recalcTreeState(HTMLImport* root) {
// Once the state reaches Ready, it shouldn't go back.
DCHECK(!oldState.isReady() || oldState <= newState);
if (newState != oldState)
- updated.append(i);
+ updated.push_back(i);
}
for (const auto& import : updated)

Powered by Google App Engine
This is Rietveld 408576698