diff options
author | Leon Scroggins <scroggo@google.com> | 2009-06-19 14:07:37 -0400 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2009-06-19 14:53:56 -0400 |
commit | df57cb4115f93b37f74801451102e818d17cf182 (patch) | |
tree | 9c64f36a8a519bb82071162673f841e67c47c156 /WebCore/html | |
parent | 5b1dfac261b89e9bf54ece84eeac8470c9a2e22e (diff) | |
download | external_webkit-df57cb4115f93b37f74801451102e818d17cf182.zip external_webkit-df57cb4115f93b37f74801451102e818d17cf182.tar.gz external_webkit-df57cb4115f93b37f74801451102e818d17cf182.tar.bz2 |
Update our <select> to work with the latest webkit.
Remove a webkit change that makes some functions public for our
use. Instead, use a pointer to a base class where those functions
are already public. In one case where a function has been removed,
call another function which behaves the same.
Diffstat (limited to 'WebCore/html')
-rw-r--r-- | WebCore/html/HTMLSelectElement.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/WebCore/html/HTMLSelectElement.h b/WebCore/html/HTMLSelectElement.h index df7832c..9ecd81c 100644 --- a/WebCore/html/HTMLSelectElement.h +++ b/WebCore/html/HTMLSelectElement.h @@ -105,15 +105,8 @@ private: virtual RenderObject* createRenderer(RenderArena*, RenderStyle *); virtual bool appendFormData(FormDataList&, bool); -#if PLATFORM(ANDROID) -public: virtual int listToOptionIndex(int listIndex) const; virtual int optionToListIndex(int optionIndex) const; -private: -#else - virtual int listToOptionIndex(int listIndex) const; - virtual int optionToListIndex(int optionIndex) const; -#endif virtual void reset(); |