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

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

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

Powered by Google App Engine
This is Rietveld 408576698