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

Unified Diff: third_party/WebKit/Source/core/page/WindowFeatures.cpp

Issue 2614033002: Migrate WTF::Vector::append() to ::push_back() [part 11 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/core/page/WindowFeatures.cpp
diff --git a/third_party/WebKit/Source/core/page/WindowFeatures.cpp b/third_party/WebKit/Source/core/page/WindowFeatures.cpp
index f1d78f9e4595cc69d89b2d6e06006575423c684e..4e299ee87e0273e8d1d314edca74a275b4393b71 100644
--- a/third_party/WebKit/Source/core/page/WindowFeatures.cpp
+++ b/third_party/WebKit/Source/core/page/WindowFeatures.cpp
@@ -169,7 +169,7 @@ void WindowFeatures::setWindowFeature(const String& keyString,
} else if (keyString == "noopener") {
noopener = true;
} else if (value == 1) {
- additionalFeatures.append(keyString);
+ additionalFeatures.push_back(keyString);
}
}

Powered by Google App Engine
This is Rietveld 408576698