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

Unified Diff: third_party/WebKit/Source/core/html/HTMLKeygenElement.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/HTMLKeygenElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
index 81996b2dc75984a11705f531fbae075a27e9cfb3..17d92d23edd2a7c7c066d6c3e8a61508521c5785 100644
--- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
@@ -74,9 +74,9 @@ void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) {
Vector<String> keys;
keys.reserveCapacity(2);
- keys.append(
+ keys.push_back(
locale().queryString(WebLocalizedString::KeygenMenuHighGradeKeySize));
- keys.append(
+ keys.push_back(
locale().queryString(WebLocalizedString::KeygenMenuMediumGradeKeySize));
// Create a select element with one option element for each key size.
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLInputElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698