| Index: Source/core/html/forms/CheckboxInputType.cpp
|
| diff --git a/Source/core/html/forms/CheckboxInputType.cpp b/Source/core/html/forms/CheckboxInputType.cpp
|
| index 526c9ae4a259f0853122592e63ea89142323aac8..738f9d58b9b0b15abb71a562058d9f40f5284f47 100644
|
| --- a/Source/core/html/forms/CheckboxInputType.cpp
|
| +++ b/Source/core/html/forms/CheckboxInputType.cpp
|
| @@ -32,9 +32,9 @@
|
| #include "config.h"
|
| #include "core/html/forms/CheckboxInputType.h"
|
|
|
| +#include "InputTypeNames.h"
|
| #include "core/events/KeyboardEvent.h"
|
| #include "core/html/HTMLInputElement.h"
|
| -#include "core/html/forms/InputTypeNames.h"
|
| #include "platform/text/PlatformLocale.h"
|
| #include "wtf/PassOwnPtr.h"
|
|
|
| @@ -47,7 +47,7 @@ PassRefPtr<InputType> CheckboxInputType::create(HTMLInputElement& element)
|
|
|
| const AtomicString& CheckboxInputType::formControlType() const
|
| {
|
| - return InputTypeNames::checkbox();
|
| + return InputTypeNames::checkbox;
|
| }
|
|
|
| bool CheckboxInputType::valueMissing(const String&) const
|
|
|