summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLOptionElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLOptionElement.h')
-rw-r--r--WebCore/html/HTMLOptionElement.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/WebCore/html/HTMLOptionElement.h b/WebCore/html/HTMLOptionElement.h
index 35f7fae..b82bfae 100644
--- a/WebCore/html/HTMLOptionElement.h
+++ b/WebCore/html/HTMLOptionElement.h
@@ -27,6 +27,13 @@
#include "HTMLFormControlElement.h"
#include "OptionElement.h"
+#if PLATFORM(ANDROID)
+namespace android {
+class WebViewCore;
+class ListBoxReply;
+};
+#endif
+
namespace WebCore {
class HTMLSelectElement;
@@ -34,6 +41,11 @@ class HTMLSelectElement;
class HTMLOptionElement : public HTMLFormControlElement, public OptionElement {
friend class HTMLSelectElement;
friend class RenderMenuList;
+#if PLATFORM(ANDROID)
+ friend class RenderThemeAndroid;
+ friend class android::WebViewCore;
+ friend class android::ListBoxReply;
+#endif
public:
static PassRefPtr<HTMLOptionElement> create(Document*, HTMLFormElement*);