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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormControlElement.h

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/HTMLFormControlElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
index 10166170ff1059df22f14505600e8947336c423f..0d2a9a180aab1be9a88a44d35dd0f8bc290e33f8 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
@@ -26,8 +26,8 @@
#define HTMLFormControlElement_h
#include "core/CoreExport.h"
-#include "core/html/FormAssociatedElement.h"
#include "core/html/LabelableElement.h"
+#include "core/html/ListedElement.h"
namespace blink {
@@ -40,10 +40,10 @@ enum CheckValidityEventBehavior {
};
// HTMLFormControlElement is the default implementation of
-// FormAssociatedElement, and form-associated element implementations should use
+// ListedElement, and listed element implementations should use
// HTMLFormControlElement unless there is a special reason.
class CORE_EXPORT HTMLFormControlElement : public LabelableElement,
- public FormAssociatedElement {
+ public ListedElement {
USING_GARBAGE_COLLECTED_MIXIN(HTMLFormControlElement);
public:
@@ -213,7 +213,7 @@ inline bool isHTMLFormControlElement(const Element& element) {
DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFormControlElement);
DEFINE_TYPE_CASTS(HTMLFormControlElement,
- FormAssociatedElement,
+ ListedElement,
control,
control->isFormControlElement(),
control.isFormControlElement());

Powered by Google App Engine
This is Rietveld 408576698