summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/chromium/public/WebInputElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/public/WebInputElement.h')
-rw-r--r--Source/WebKit/chromium/public/WebInputElement.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/WebKit/chromium/public/WebInputElement.h b/Source/WebKit/chromium/public/WebInputElement.h
index be8623c..81c397c 100644
--- a/Source/WebKit/chromium/public/WebInputElement.h
+++ b/Source/WebKit/chromium/public/WebInputElement.h
@@ -74,14 +74,13 @@ namespace WebKit {
WEBKIT_API WebString placeholder() const;
WEBKIT_API bool isAutofilled() const;
WEBKIT_API void setAutofilled(bool);
- WEBKIT_API void dispatchFormControlChangeEvent();
WEBKIT_API void setSelectionRange(int, int);
WEBKIT_API int selectionStart() const;
WEBKIT_API int selectionEnd() const;
WEBKIT_API bool isValidValue(const WebString&) const;
// Exposes the default value of the maxLength attribute.
- WEBKIT_API static const int defaultMaxLength;
+ WEBKIT_API static int defaultMaxLength();
#if WEBKIT_IMPLEMENTATION
WebInputElement(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
@@ -90,6 +89,13 @@ namespace WebKit {
#endif
};
+ WEBKIT_API WebInputElement* toWebInputElement(WebElement*);
+
+ inline const WebInputElement* toWebInputElement(const WebElement* element)
+ {
+ return toWebInputElement(const_cast<WebElement*>(element));
+ }
+
} // namespace WebKit
#endif