| Index: third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| index b724f71f28dd038db54749a969efed7184630f3f..84a02957d45d2c5b321232f002f5d58a9ab3e31e 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| @@ -34,15 +34,11 @@
|
|
|
| namespace blink {
|
|
|
| -namespace {
|
| -
|
| HTMLElement* nextElement(const HTMLElement& element, HTMLFormElement* stayWithin, bool forward)
|
| {
|
| return forward ? Traversal<HTMLElement>::next(element, (Node* )stayWithin) : Traversal<HTMLElement>::previous(element, (Node* )stayWithin);
|
| }
|
|
|
| -} // namespace
|
| -
|
| using namespace HTMLNames;
|
|
|
| PassRefPtrWillBeRawPtr<InputType> RadioInputType::create(HTMLInputElement& element)
|
|
|