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

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

Issue 2546063002: Rename FormAssociatedElement to ListedElement (Closed)
Patch Set: Suggested changes made 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/FormData.cpp
diff --git a/third_party/WebKit/Source/core/html/FormData.cpp b/third_party/WebKit/Source/core/html/FormData.cpp
index 9f1c8fcd924237a9c49cf70067ddced74c4bebe8..da16236006db20564a4bb289a07d05716bdab0a6 100644
--- a/third_party/WebKit/Source/core/html/FormData.cpp
+++ b/third_party/WebKit/Source/core/html/FormData.cpp
@@ -84,8 +84,8 @@ FormData::FormData(HTMLFormElement* form) : m_encoding(UTF8Encoding()) {
if (!form)
return;
- for (unsigned i = 0; i < form->associatedElements().size(); ++i) {
- FormAssociatedElement* element = form->associatedElements()[i];
+ for (unsigned i = 0; i < form->listedElements().size(); ++i) {
+ ListedElement* element = form->listedElements()[i];
if (!toHTMLElement(element)->isDisabledFormControl())
element->appendToFormData(*this);
}

Powered by Google App Engine
This is Rietveld 408576698