Chromium Code Reviews| Index: Source/core/html/HTMLFormControlsCollection.h |
| diff --git a/Source/core/html/HTMLFormControlsCollection.h b/Source/core/html/HTMLFormControlsCollection.h |
| index 022b0eb72484f1a239d1fccb599ab69b1b294edf..488c701fb590a5a98c8c8b735475952294d0ab26 100644 |
| --- a/Source/core/html/HTMLFormControlsCollection.h |
| +++ b/Source/core/html/HTMLFormControlsCollection.h |
| @@ -24,6 +24,7 @@ |
| #define HTMLFormControlsCollection_h |
| #include "core/html/HTMLCollection.h" |
| +#include "core/html/RadioNodeList.h" |
| namespace WebCore { |
| @@ -42,6 +43,7 @@ public: |
| virtual ~HTMLFormControlsCollection(); |
| virtual Node* namedItem(const AtomicString& name) const; |
| + void namedGetter(const AtomicString& name, RefPtr<RadioNodeList>& returnValue1, RefPtr<Node>& returnValue2); |
|
haraken
2013/05/17 05:44:48
Nit: You can omit variable names.
|
| private: |
| HTMLFormControlsCollection(Node*); |