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

Unified Diff: third_party/WebKit/Source/web/WebFrameSerializer.cpp

Issue 2612903007: Migrate WTF::Vector::append() to ::push_back() [part 15 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
« no previous file with comments | « third_party/WebKit/Source/web/WebFormElement.cpp ('k') | third_party/WebKit/Source/web/WebHistoryItem.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebFrameSerializer.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameSerializer.cpp b/third_party/WebKit/Source/web/WebFrameSerializer.cpp
index 5fdf086b987a4235d190e22fae7cf7de62f0db1f..38008c2c4c0aaf2d73079d4ed8dd7cb086ea4400 100644
--- a/third_party/WebKit/Source/web/WebFrameSerializer.cpp
+++ b/third_party/WebKit/Source/web/WebFrameSerializer.cpp
@@ -199,7 +199,7 @@ Vector<Attribute> MHTMLFrameSerializerDelegate::getCustomAttributes(
if (element.isFormControlElement() &&
!element.fastHasAttribute(HTMLNames::disabledAttr)) {
Attribute disabledAttribute(HTMLNames::disabledAttr, "");
- attributes.append(disabledAttribute);
+ attributes.push_back(disabledAttribute);
}
return attributes;
« no previous file with comments | « third_party/WebKit/Source/web/WebFormElement.cpp ('k') | third_party/WebKit/Source/web/WebHistoryItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698