| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 #include "config.h" | 22 #include "config.h" |
| 23 #include "core/html/RadioInputType.h" | 23 #include "core/html/RadioInputType.h" |
| 24 | 24 |
| 25 #include "HTMLNames.h" | 25 #include "HTMLNames.h" |
| 26 #include "core/dom/KeyboardEvent.h" | 26 #include "core/dom/KeyboardEvent.h" |
| 27 #include "core/dom/MouseEvent.h" | 27 #include "core/dom/MouseEvent.h" |
| 28 #include "core/dom/NodeTraversal.h" | 28 #include "core/dom/NodeTraversal.h" |
| 29 #include "core/html/HTMLInputElement.h" | 29 #include "core/html/HTMLInputElement.h" |
| 30 #include "core/html/InputTypeNames.h" | 30 #include "core/html/InputTypeNames.h" |
| 31 #include "core/page/Frame.h" | |
| 32 #include "core/page/Settings.h" | |
| 33 #include "core/page/SpatialNavigation.h" | 31 #include "core/page/SpatialNavigation.h" |
| 34 #include "core/platform/LocalizedStrings.h" | 32 #include "core/platform/LocalizedStrings.h" |
| 35 #include <wtf/PassOwnPtr.h> | 33 #include <wtf/PassOwnPtr.h> |
| 36 | 34 |
| 37 namespace WebCore { | 35 namespace WebCore { |
| 38 | 36 |
| 39 using namespace HTMLNames; | 37 using namespace HTMLNames; |
| 40 | 38 |
| 41 PassOwnPtr<InputType> RadioInputType::create(HTMLInputElement* element) | 39 PassOwnPtr<InputType> RadioInputType::create(HTMLInputElement* element) |
| 42 { | 40 { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 { | 183 { |
| 186 return true; | 184 return true; |
| 187 } | 185 } |
| 188 | 186 |
| 189 bool RadioInputType::supportsIndeterminateAppearance() const | 187 bool RadioInputType::supportsIndeterminateAppearance() const |
| 190 { | 188 { |
| 191 return false; | 189 return false; |
| 192 } | 190 } |
| 193 | 191 |
| 194 } // namespace WebCore | 192 } // namespace WebCore |
| OLD | NEW |