Index: public/web/WebFormControlElement.h |
diff --git a/public/web/WebFormControlElement.h b/public/web/WebFormControlElement.h |
index bb5733d6722103b88c935144e12588fa2ab97851..d5aa670a5ed2ab06ff4cbf253760e63b1c22959d 100644 |
--- a/public/web/WebFormControlElement.h |
+++ b/public/web/WebFormControlElement.h |
@@ -60,6 +60,7 @@ public: |
BLINK_EXPORT WebString formControlType() const; |
BLINK_EXPORT void dispatchFormControlChangeEvent(); |
+ BLINK_EXPORT void dispatchFormControlInputEvent(); |
tkent
2014/03/28 01:50:33
Why do we need to expose it? setValue(..., true)
Dan Beam
2014/03/28 04:50:57
Done.
|
BLINK_EXPORT bool isAutofilled() const; |
BLINK_EXPORT void setAutofilled(bool); |
@@ -70,7 +71,7 @@ public: |
// Sets value for input element, textarea element and select element. For select |
// element it finds the option with value matches the given parameter and make the |
// option as the current selection. |
- BLINK_EXPORT void setValue(const WebString&, bool sendChangeEvent = false); |
+ BLINK_EXPORT void setValue(const WebString&, bool sendEvents = false); |
// Returns value of element. For select element, it returns the value of |
// the selected option if present. If no selected option, an empty string |
// is returned. If element doesn't fall into input element, textarea element |