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

Unified Diff: Source/core/html/forms/RadioInputType.cpp

Issue 72683003: Auto-generate InputTypeNames source from InputTypeNames.in. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/core/html/forms/RadioInputType.cpp
diff --git a/Source/core/html/forms/RadioInputType.cpp b/Source/core/html/forms/RadioInputType.cpp
index 8bc44aa52a8a0956e0ddb51f4a1c13ad3eb10dd5..fc6da4939fac96c1ec9d81843fa8493622c4ce5f 100644
--- a/Source/core/html/forms/RadioInputType.cpp
+++ b/Source/core/html/forms/RadioInputType.cpp
@@ -23,11 +23,11 @@
#include "core/html/forms/RadioInputType.h"
#include "HTMLNames.h"
+#include "InputTypeNames.h"
#include "core/dom/NodeTraversal.h"
#include "core/events/KeyboardEvent.h"
#include "core/events/MouseEvent.h"
#include "core/html/HTMLInputElement.h"
-#include "core/html/forms/InputTypeNames.h"
#include "core/page/SpatialNavigation.h"
#include "platform/text/PlatformLocale.h"
#include "wtf/PassOwnPtr.h"
@@ -43,7 +43,7 @@ PassRefPtr<InputType> RadioInputType::create(HTMLInputElement& element)
const AtomicString& RadioInputType::formControlType() const
{
- return InputTypeNames::radio();
+ return InputTypeNames::radio;
}
bool RadioInputType::valueMissing(const String&) const

Powered by Google App Engine
This is Rietveld 408576698