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

Unified Diff: third_party/WebKit/Source/core/html/ValidityState.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/ValidityState.h
diff --git a/third_party/WebKit/Source/core/html/ValidityState.h b/third_party/WebKit/Source/core/html/ValidityState.h
index 6ebc784ece5e48f751f0077191d71375cc7ec469..6fb24bd4af758a72a6049c23ae11fe33ae92e6e5 100644
--- a/third_party/WebKit/Source/core/html/ValidityState.h
+++ b/third_party/WebKit/Source/core/html/ValidityState.h
@@ -25,7 +25,7 @@
#define ValidityState_h
#include "bindings/core/v8/ScriptWrappable.h"
-#include "core/html/FormAssociatedElement.h"
+#include "core/html/ListedElement.h"
namespace blink {
@@ -35,7 +35,7 @@ class ValidityState final : public GarbageCollected<ValidityState>,
WTF_MAKE_NONCOPYABLE(ValidityState);
public:
- static ValidityState* create(FormAssociatedElement* control) {
+ static ValidityState* create(ListedElement* control) {
return new ValidityState(control);
}
DEFINE_INLINE_TRACE() { visitor->trace(m_control); }
@@ -57,9 +57,9 @@ class ValidityState final : public GarbageCollected<ValidityState>,
bool valid() const;
private:
- explicit ValidityState(FormAssociatedElement* control) : m_control(control) {}
+ explicit ValidityState(ListedElement* control) : m_control(control) {}
- Member<FormAssociatedElement> m_control;
+ Member<ListedElement> m_control;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/ListedElement.cpp ('k') | third_party/WebKit/Source/core/html/forms/FormController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698