From: adamk@chromium.org Date: Fri, 16 Mar 2012 17:58:13 +0000 (+0000) Subject: Make HTMLInputElement::isRadioButton non-virtual and remove unused HTMLFormControlEle... X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=f23e9908aa30e4c20d49944676df9611f1e14be4;ds=sidebyside Make HTMLInputElement::isRadioButton non-virtual and remove unused HTMLFormControlElement::isRadioButton method https://bugs.webkit.org/show_bug.cgi?id=81255 Reviewed by Kent Tamura. No new tests, no change in behavior. * html/HTMLFormControlElement.h: * html/HTMLInputElement.h: (HTMLInputElement): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@111026 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index e56d98e3ffce..863860b249d6 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,16 @@ +2012-03-16 Adam Klein + + Make HTMLInputElement::isRadioButton non-virtual and remove unused HTMLFormControlElement::isRadioButton method + https://bugs.webkit.org/show_bug.cgi?id=81255 + + Reviewed by Kent Tamura. + + No new tests, no change in behavior. + + * html/HTMLFormControlElement.h: + * html/HTMLInputElement.h: + (HTMLInputElement): + 2012-03-16 Tay Grigg [BlackBerry] Update NetworkJob to accept batched headers diff --git a/Source/WebCore/html/HTMLFormControlElement.h b/Source/WebCore/html/HTMLFormControlElement.h index df07a8ba45f6..3e61e78b666b 100644 --- a/Source/WebCore/html/HTMLFormControlElement.h +++ b/Source/WebCore/html/HTMLFormControlElement.h @@ -80,7 +80,6 @@ public: virtual bool isEnabledFormControl() const { return !disabled(); } virtual bool isReadOnlyFormControl() const { return readOnly(); } - virtual bool isRadioButton() const { return false; } virtual bool canTriggerImplicitSubmission() const { return false; } // Override in derived classes to get the encoded name=value pair for submitting. diff --git a/Source/WebCore/html/HTMLInputElement.h b/Source/WebCore/html/HTMLInputElement.h index 9a658b22b533..8079817c2d50 100644 --- a/Source/WebCore/html/HTMLInputElement.h +++ b/Source/WebCore/html/HTMLInputElement.h @@ -83,7 +83,7 @@ public: bool isTextButton() const; - virtual bool isRadioButton() const; + bool isRadioButton() const; bool isTextField() const; bool isSearchField() const; bool isInputTypeHidden() const;