| 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
|
|
|